TestWorkFactory.php 341 B

1234567891011121314151617181920
  1. <?php
  2. namespace Knuckles\Scribe\Tests\Fixtures\inmemory;
  3. use Illuminate\Database\Eloquent\Factories\Factory;
  4. class TestWorkFactory extends Factory
  5. {
  6. protected $model = TestWork::class;
  7. /**
  8. * @inheritDoc
  9. */
  10. public function definition()
  11. {
  12. return [
  13. 'name' => 'My best work',
  14. ];
  15. }
  16. }