()
| 1367 | class GenericContextDemo |
| 1368 | { |
| 1369 | public function demo(): void |
| 1370 | { |
| 1371 | $src = new ScaffoldingGenericContext(); |
| 1372 | |
| 1373 | $src->chest->unwrap()->open(); // Box<Gift>::unwrap() → Gift |
| 1374 | $src->display()->first()->open(); // TypedCollection<int, Gift>::first() → Gift |
| 1375 | } |
| 1376 | } |
| 1377 | |
| 1378 |