We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04e42ba commit 867f6e2Copy full SHA for 867f6e2
1 file changed
src/Model/Model.php
@@ -62,7 +62,7 @@ public function fill(array $attributes)
62
{
63
foreach ($this->fillableFromArray($attributes) as $key => $value)
64
65
- $this->setAttribute($key, $value);
+ $this->setAttribute($key, $value);
66
}
67
return $this;
68
@@ -116,11 +116,11 @@ public function hasSetMutator($key)
116
117
118
/**
119
- * Convert a value to studly caps case.
120
- *
121
- * @param string $value
122
- * @return string
123
- */
+ * Convert a value to studly caps case.
+ *
+ * @param string $value
+ * @return string
+ */
124
public function studly_case($value)
125
126
$value = ucwords(str_replace(['-', '_'], ' ', $value));
0 commit comments