Skip to content

Commit 254b408

Browse files
committed
fix: corrects static syntax
1 parent 235d54e commit 254b408

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
@@ -28,14 +28,14 @@ abstract class Model implements ModelInterface, Arrayable, JsonSerializable {
2828
*
2929
* @var array<string,string|array>
3030
*/
31-
static protected $properties = [];
31+
protected static $properties = [];
3232

3333
/**
3434
* The model relationships assigned to their relationship types.
3535
*
3636
* @var array<string,string>
3737
*/
38-
static protected $relationships = [];
38+
protected static $relationships = [];
3939

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

0 commit comments

Comments
 (0)