File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,36 +19,36 @@ public function __construct(array $attributes = []);
19
19
*
20
20
* @param string $key
21
21
*/
22
- public function __get (string $ key ): mixed ;
22
+ public function __get (string $ key );
23
23
24
24
/**
25
25
* Dynamically set attributes on the model.
26
26
*
27
27
* @param mixed $value
28
28
* @param string $key
29
29
*/
30
- public function __set (string $ key , mixed $ value ): void ;
30
+ public function __set (string $ key , mixed $ value );
31
31
32
32
/**
33
33
* Fill the model with an array of attributes.
34
34
*
35
35
* @param array $attributes
36
36
*/
37
- public function fill (array $ attributes ): self ;
37
+ public function fill (array $ attributes );
38
38
39
39
/**
40
40
* Get an attribute from the model.
41
41
*
42
42
* @param mixed $default
43
43
* @param string $key
44
44
*/
45
- public function getAttribute (string $ key, mixed $ default = null ): mixed ;
45
+ public function getAttribute (string $ key) ;
46
46
47
47
/**
48
48
* Set a given attribute on the model.
49
49
*
50
50
* @param mixed $value
51
51
* @param string $key
52
52
*/
53
- public function setAttribute (string $ key , mixed $ value ): self ;
53
+ public function setAttribute (string $ key , $ value );
54
54
}
You can’t perform that action at this time.
0 commit comments