()
| 626 | class TraitGenericDemo |
| 627 | { |
| 628 | public function demo(): void |
| 629 | { |
| 630 | Product::factory()->create(); // @use HasFactory<UserFactory> → UserFactory |
| 631 | Product::factory()->count(5)->make(); // count() returns static, make() returns Product |
| 632 | |
| 633 | $idx = new PenIndex(); // @use Indexable<int, Pen> |
| 634 | $idx->get()->write(); // TValue → Pen |
| 635 | } |
| 636 | } |
| 637 | |
| 638 |