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 @@ -14,21 +14,21 @@ class ColumnTypeAggregate extends Model {
14
14
protected $ casts = [
15
15
'castInt ' => 'int ' ,
16
16
'castReal ' => 'real ' ,
17
+ 'castBool ' => 'bool ' ,
17
18
'castDate ' => 'date ' ,
19
+ 'castArray ' => 'array ' ,
18
20
'castFloat ' => 'float ' ,
19
- 'castBool ' => 'bool ' ,
20
21
'castDouble ' => 'double ' ,
22
+ 'castObject ' => 'object ' ,
21
23
'castString ' => 'string ' ,
24
+ 'castDecimal ' => 'decimal ' ,
25
+ 'castBoolean ' => 'boolean ' ,
22
26
'castInteger ' => 'integer ' ,
23
27
'castDateTime ' => 'datetime ' ,
24
- 'castBoolean ' => 'boolean ' ,
25
- 'castArray ' => 'array ' ,
26
28
'castEncrypted ' => 'encrypted ' ,
27
29
'castTimestamp ' => 'timestamp ' ,
28
30
'castImmutableDate ' => 'immutable_date ' ,
29
31
'castAsStringable ' => AsStringable::class,
30
32
'castImmutableDateTime ' => 'immutable_datetime ' ,
31
- 'castObject ' => 'object ' ,
32
- 'castDecimal ' => 'decimal ' ,
33
33
];
34
34
}
You can’t perform that action at this time.
0 commit comments