29 lines
438 B
Plaintext
29 lines
438 B
Plaintext
<?php
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
use App\Abstracts\Factory;
|
|
use $MODEL_NAMESPACE$\$NAME$ as Model;
|
|
|
|
class $NAME$ extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Model::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|