File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
33
"require-dev" : {
34
34
"orchestra/testbench" : " ^9.0" ,
35
35
"mockery/mockery" : " ^1.5.1" ,
36
- "laravel/pint" : " ^1.1 "
36
+ "laravel/pint" : " ^1.17 "
37
37
},
38
38
"extra" : {
39
39
"laravel" : {
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ public static function createModelsFromRecordSet(BaseCollection $records): Colle
150
150
// return an empty Eloquent/Collection (or the custom collection specified in the model) if an empty collection was
151
151
// passed in.
152
152
if ($ records ->count () === 0 ) {
153
- return (new static () )->newCollection ();
153
+ return (new static )->newCollection ();
154
154
}
155
155
156
156
// Records passed in weren't empty, so process the records
@@ -159,7 +159,7 @@ public static function createModelsFromRecordSet(BaseCollection $records): Colle
159
159
});
160
160
161
161
// return the filled Eloquent/Collection (or the custom collection specified in the model)
162
- return (new static () )->newCollection ($ mappedRecords ->all ());
162
+ return (new static )->newCollection ($ mappedRecords ->all ());
163
163
}
164
164
165
165
/** Fill in data for this existing model with record data from FileMaker
You can’t perform that action at this time.
0 commit comments