Skip to content

Commit a7c7c3b

Browse files
Merge branch 'refactor/static-methods-properties' into feature/from-query-data
2 parents 99769e0 + 254b408 commit a7c7c3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Models/Model.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ abstract class Model implements ModelInterface, Arrayable, JsonSerializable {
3232
*
3333
* @var array<string,string|array>
3434
*/
35-
static protected $properties = [];
35+
protected static $properties = [];
3636

3737
/**
3838
* The model relationships assigned to their relationship types.
3939
*
4040
* @var array<string,string>
4141
*/
42-
static protected $relationships = [];
42+
protected static $relationships = [];
4343

4444
/**
4545
* Relationships that have already been loaded and don't need to be loaded again.

0 commit comments

Comments
 (0)