$class * @param string $name * @param array $definitions * @param array $states * @param array $afterMaking * @param array $afterCreating * @param \Faker\Generator $faker * @return void */ public function __construct($class, $name, array $definitions, array $states, array $afterMaking, array $afterCreating, Faker $faker) { } /** * Create a collection of models and persist them to the database. * * @param array $attributes * @return (TCount is 1 ? TModel : \Illuminate\Database\Eloquent\Collection) */ public function create(array $attributes = []) { } /** * Create a collection of models. * * @param array $attributes * @return (TCount is 1 ? TModel : \Illuminate\Database\Eloquent\Collection) */ public function make(array $attributes = []) { } }