()
| 2231 | class ClassAliasDemo |
| 2232 | { |
| 2233 | public function demo(): void |
| 2234 | { |
| 2235 | $profile = new Profile(new User('Eve', 'eve@example.com')); |
| 2236 | $profile->getDisplayName(); // Profile → UserProfile via `use ... as` |
| 2237 | } |
| 2238 | } |
| 2239 | |
| 2240 |
nothing calls this directly
no test coverage detected