|
6 | 6 | use RobinDrost\PrismicEloquent\Contracts\Model as ModelContract;
|
7 | 7 | use RobinDrost\PrismicEloquent\Contracts\QueryBuilder as QueryBuilderContract;
|
8 | 8 | use stdClass;
|
| 9 | +use Illuminate\Support\Str; |
9 | 10 |
|
10 | 11 | abstract class Model implements ModelContract
|
11 | 12 | {
|
@@ -50,7 +51,7 @@ public function __construct($document = null)
|
50 | 51 | public function attribute(string $name)
|
51 | 52 | {
|
52 | 53 | if ($this->fieldsToSnakeCase) {
|
53 |
| - $name = snake_case($name); |
| 54 | + $name = Str::snake($name); |
54 | 55 | }
|
55 | 56 |
|
56 | 57 | return $this->document->{$name};
|
@@ -102,7 +103,7 @@ public function newEmptyQuery() : QueryBuilderContract
|
102 | 103 | public static function getTypeName() : string
|
103 | 104 | {
|
104 | 105 | $fullPath = explode('\\', get_called_class());
|
105 |
| - return snake_case(array_pop($fullPath)); |
| 106 | + return Str::snake(array_pop($fullPath)); |
106 | 107 | }
|
107 | 108 |
|
108 | 109 | /**
|
@@ -168,11 +169,11 @@ public function __get(string $name)
|
168 | 169 | }
|
169 | 170 |
|
170 | 171 | if ($this->fieldsToSnakeCase) {
|
171 |
| - $name = snake_case($name); |
| 172 | + $name = Str::snake($name); |
172 | 173 | }
|
173 | 174 |
|
174 | 175 | if ($this->hasField($name)) {
|
175 |
| - $fieldMethod = 'get' . ucfirst(camel_case($name)) . 'Field'; |
| 176 | + $fieldMethod = 'get' . ucfirst(Str::camel($name)) . 'Field'; |
176 | 177 |
|
177 | 178 | if (method_exists($this, $fieldMethod)) {
|
178 | 179 | return $this->{$fieldMethod}($this->field($name));
|
|
0 commit comments