Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Commit 44e198a

Browse files
authored
Merge pull request #5 from davidraijmakers/feature/laravel-6-string-functions
Laravel 6 string functions
2 parents 90712af + e88b475 commit 44e198a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Model.php

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use RobinDrost\PrismicEloquent\Contracts\Model as ModelContract;
77
use RobinDrost\PrismicEloquent\Contracts\QueryBuilder as QueryBuilderContract;
88
use stdClass;
9+
use Illuminate\Support\Str;
910

1011
abstract class Model implements ModelContract
1112
{
@@ -50,7 +51,7 @@ public function __construct($document = null)
5051
public function attribute(string $name)
5152
{
5253
if ($this->fieldsToSnakeCase) {
53-
$name = snake_case($name);
54+
$name = Str::snake($name);
5455
}
5556

5657
return $this->document->{$name};
@@ -102,7 +103,7 @@ public function newEmptyQuery() : QueryBuilderContract
102103
public static function getTypeName() : string
103104
{
104105
$fullPath = explode('\\', get_called_class());
105-
return snake_case(array_pop($fullPath));
106+
return Str::snake(array_pop($fullPath));
106107
}
107108

108109
/**
@@ -168,11 +169,11 @@ public function __get(string $name)
168169
}
169170

170171
if ($this->fieldsToSnakeCase) {
171-
$name = snake_case($name);
172+
$name = Str::snake($name);
172173
}
173174

174175
if ($this->hasField($name)) {
175-
$fieldMethod = 'get' . ucfirst(camel_case($name)) . 'Field';
176+
$fieldMethod = 'get' . ucfirst(Str::camel($name)) . 'Field';
176177

177178
if (method_exists($this, $fieldMethod)) {
178179
return $this->{$fieldMethod}($this->field($name));

0 commit comments

Comments
 (0)