Skip to content

Commit

Permalink
Merge pull request #12 from spatie/analysis-8ALkQ9
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
freekmurze committed May 9, 2018
2 parents 652a4d5 + 030a461 commit 4b38994
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SchemalessAttributes.php
Expand Up @@ -4,8 +4,8 @@

use Countable;
use ArrayAccess;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;

class SchemalessAttributes implements ArrayAccess, Countable
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestModel.php
Expand Up @@ -13,7 +13,7 @@ class TestModel extends Model
public $guarded = [];

public $casts = [
'schemaless_attributes' => 'array'
'schemaless_attributes' => 'array',
];

public function getSchemalessAttributesAttribute(): SchemalessAttributes
Expand Down

0 comments on commit 4b38994

Please sign in to comment.