@@ -32,7 +32,7 @@ abstract class Factory
32
32
/**
33
33
* The name of the factory's corresponding model.
34
34
*
35
- * @var class-string<\Illuminate\Database\Eloquent\Model| TModel>
35
+ * @var class-string<TModel>
36
36
*/
37
37
protected $ model ;
38
38
@@ -109,7 +109,7 @@ abstract class Factory
109
109
/**
110
110
* The default model name resolver.
111
111
*
112
- * @var callable
112
+ * @var callable(self): class-string<TModel>
113
113
*/
114
114
protected static $ modelNameResolver ;
115
115
@@ -214,7 +214,7 @@ public function raw($attributes = [], ?Model $parent = null)
214
214
* Create a single model and persist it to the database.
215
215
*
216
216
* @param (callable(array<string, mixed>): array<string, mixed>)|array<string, mixed> $attributes
217
- * @return \Illuminate\Database\Eloquent\Model| TModel
217
+ * @return TModel
218
218
*/
219
219
public function createOne ($ attributes = [])
220
220
{
@@ -225,7 +225,7 @@ public function createOne($attributes = [])
225
225
* Create a single model and persist it to the database without dispatching any model events.
226
226
*
227
227
* @param (callable(array<string, mixed>): array<string, mixed>)|array<string, mixed> $attributes
228
- * @return \Illuminate\Database\Eloquent\Model| TModel
228
+ * @return TModel
229
229
*/
230
230
public function createOneQuietly ($ attributes = [])
231
231
{
@@ -236,7 +236,7 @@ public function createOneQuietly($attributes = [])
236
236
* Create a collection of models and persist them to the database.
237
237
*
238
238
* @param int|null|iterable<int, array<string, mixed>> $records
239
- * @return \Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model| TModel>
239
+ * @return \Illuminate\Database\Eloquent\Collection<int, TModel>
240
240
*/
241
241
public function createMany (int |iterable |null $ records = null )
242
242
{
@@ -259,7 +259,7 @@ public function createMany(int|iterable|null $records = null)
259
259
* Create a collection of models and persist them to the database without dispatching any model events.
260
260
*
261
261
* @param int|null|iterable<int, array<string, mixed>> $records
262
- * @return \Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model| TModel>
262
+ * @return \Illuminate\Database\Eloquent\Collection<int, TModel>
263
263
*/
264
264
public function createManyQuietly (int |iterable |null $ records = null )
265
265
{
@@ -273,7 +273,7 @@ public function createManyQuietly(int|iterable|null $records = null)
273
273
*
274
274
* @param (callable(array<string, mixed>): array<string, mixed>)|array<string, mixed> $attributes
275
275
* @param \Illuminate\Database\Eloquent\Model|null $parent
276
- * @return \Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model| TModel>|\Illuminate\Database\Eloquent\Model |TModel
276
+ * @return \Illuminate\Database\Eloquent\Collection<int, TModel>|TModel
277
277
*/
278
278
public function create ($ attributes = [], ?Model $ parent = null )
279
279
{
@@ -301,7 +301,7 @@ public function create($attributes = [], ?Model $parent = null)
301
301
*
302
302
* @param (callable(array<string, mixed>): array<string, mixed>)|array<string, mixed> $attributes
303
303
* @param \Illuminate\Database\Eloquent\Model|null $parent
304
- * @return \Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model| TModel>|\Illuminate\Database\Eloquent\Model |TModel
304
+ * @return \Illuminate\Database\Eloquent\Collection<int, TModel>|TModel
305
305
*/
306
306
public function createQuietly ($ attributes = [], ?Model $ parent = null )
307
307
{
@@ -315,7 +315,7 @@ public function createQuietly($attributes = [], ?Model $parent = null)
315
315
*
316
316
* @param array<string, mixed> $attributes
317
317
* @param \Illuminate\Database\Eloquent\Model|null $parent
318
- * @return \Closure(): (\Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model| TModel>|\Illuminate\Database\Eloquent\Model |TModel)
318
+ * @return \Closure(): (\Illuminate\Database\Eloquent\Collection<int, TModel>|TModel)
319
319
*/
320
320
public function lazy (array $ attributes = [], ?Model $ parent = null )
321
321
{
@@ -325,7 +325,7 @@ public function lazy(array $attributes = [], ?Model $parent = null)
325
325
/**
326
326
* Set the connection name on the results and store them.
327
327
*
328
- * @param \Illuminate\Support\Collection $results
328
+ * @param \Illuminate\Support\Collection<int, \Illuminate\Database\Eloquent\Model> $results
329
329
* @return void
330
330
*/
331
331
protected function store (Collection $ results )
@@ -366,7 +366,7 @@ protected function createChildren(Model $model)
366
366
* Make a single instance of the model.
367
367
*
368
368
* @param (callable(array<string, mixed>): array<string, mixed>)|array<string, mixed> $attributes
369
- * @return \Illuminate\Database\Eloquent\Model| TModel
369
+ * @return TModel
370
370
*/
371
371
public function makeOne ($ attributes = [])
372
372
{
@@ -378,7 +378,7 @@ public function makeOne($attributes = [])
378
378
*
379
379
* @param (callable(array<string, mixed>): array<string, mixed>)|array<string, mixed> $attributes
380
380
* @param \Illuminate\Database\Eloquent\Model|null $parent
381
- * @return \Illuminate\Database\Eloquent\Collection<int, \Illuminate\Database\Eloquent\Model| TModel>|\Illuminate\Database\Eloquent\Model |TModel
381
+ * @return \Illuminate\Database\Eloquent\Collection<int, TModel>|TModel
382
382
*/
383
383
public function make ($ attributes = [], ?Model $ parent = null )
384
384
{
@@ -504,7 +504,7 @@ protected function expandAttributes(array $definition)
504
504
/**
505
505
* Add a new state transformation to the model definition.
506
506
*
507
- * @param (callable(array<string, mixed>, \Illuminate\Database\Eloquent\Model |null): array<string, mixed>)|array<string, mixed> $state
507
+ * @param (callable(array<string, mixed>, TModel |null): array<string, mixed>)|array<string, mixed> $state
508
508
* @return static
509
509
*/
510
510
public function state ($ state )
@@ -654,8 +654,10 @@ public function recycle($model)
654
654
/**
655
655
* Retrieve a random model of a given type from previously provided models to recycle.
656
656
*
657
- * @param string $modelClassName
658
- * @return \Illuminate\Database\Eloquent\Model|null
657
+ * @template TClass of \Illuminate\Database\Eloquent\Model
658
+ *
659
+ * @param class-string<TClass> $modelClassName
660
+ * @return TClass|null
659
661
*/
660
662
public function getRandomRecycledModel ($ modelClassName )
661
663
{
@@ -665,7 +667,7 @@ public function getRandomRecycledModel($modelClassName)
665
667
/**
666
668
* Add a new "after making" callback to the model definition.
667
669
*
668
- * @param \Closure(\Illuminate\Database\Eloquent\Model| TModel): mixed $callback
670
+ * @param \Closure(TModel): mixed $callback
669
671
* @return static
670
672
*/
671
673
public function afterMaking (Closure $ callback )
@@ -676,7 +678,7 @@ public function afterMaking(Closure $callback)
676
678
/**
677
679
* Add a new "after creating" callback to the model definition.
678
680
*
679
- * @param \Closure(\Illuminate\Database\Eloquent\Model| TModel): mixed $callback
681
+ * @param \Closure(TModel): mixed $callback
680
682
* @return static
681
683
*/
682
684
public function afterCreating (Closure $ callback )
@@ -761,7 +763,7 @@ protected function newInstance(array $arguments = [])
761
763
* Get a new model instance.
762
764
*
763
765
* @param array<string, mixed> $attributes
764
- * @return \Illuminate\Database\Eloquent\Model| TModel
766
+ * @return TModel
765
767
*/
766
768
public function newModel (array $ attributes = [])
767
769
{
@@ -773,7 +775,7 @@ public function newModel(array $attributes = [])
773
775
/**
774
776
* Get the name of the model that is generated by the factory.
775
777
*
776
- * @return class-string<\Illuminate\Database\Eloquent\Model| TModel>
778
+ * @return class-string<TModel>
777
779
*/
778
780
public function modelName ()
779
781
{
@@ -797,7 +799,7 @@ public function modelName()
797
799
/**
798
800
* Specify the callback that should be invoked to guess model names based on factory names.
799
801
*
800
- * @param callable(self): class-string<\Illuminate\Database\Eloquent\Model| TModel> $callback
802
+ * @param callable(self): class-string<TModel> $callback
801
803
* @return void
802
804
*/
803
805
public static function guessModelNamesUsing (callable $ callback )
@@ -819,8 +821,10 @@ public static function useNamespace(string $namespace)
819
821
/**
820
822
* Get a new factory instance for the given model name.
821
823
*
822
- * @param class-string<\Illuminate\Database\Eloquent\Model> $modelName
823
- * @return \Illuminate\Database\Eloquent\Factories\Factory
824
+ * @template TClass of \Illuminate\Database\Eloquent\Model
825
+ *
826
+ * @param class-string<TClass> $modelName
827
+ * @return \Illuminate\Database\Eloquent\Factories\Factory<TClass>
824
828
*/
825
829
public static function factoryForModel (string $ modelName )
826
830
{
@@ -853,8 +857,10 @@ protected function withFaker()
853
857
/**
854
858
* Get the factory name for the given model name.
855
859
*
856
- * @param class-string<\Illuminate\Database\Eloquent\Model> $modelName
857
- * @return class-string<\Illuminate\Database\Eloquent\Factories\Factory>
860
+ * @template TClass of \Illuminate\Database\Eloquent\Model
861
+ *
862
+ * @param class-string<TClass> $modelName
863
+ * @return class-string<\Illuminate\Database\Eloquent\Factories\Factory<TClass>>
858
864
*/
859
865
public static function resolveFactoryName (string $ modelName )
860
866
{
@@ -880,8 +886,8 @@ protected static function appNamespace()
880
886
{
881
887
try {
882
888
return Container::getInstance ()
883
- ->make (Application::class)
884
- ->getNamespace ();
889
+ ->make (Application::class)
890
+ ->getNamespace ();
885
891
} catch (Throwable ) {
886
892
return 'App \\' ;
887
893
}
0 commit comments