@template T */
| 79 | |
| 80 | /** @template T */ |
| 81 | interface GenericInterface |
| 82 | { |
| 83 | |
| 84 | /** @return T */ |
| 85 | public function doFoo(); |
| 86 | |
| 87 | } |
| 88 | |
| 89 | /** @implements GenericInterface<int> */ |
| 90 | enum EnumImplementsGeneric: int implements GenericInterface |
nothing calls this directly
no outgoing calls
no test coverage detected