* @param metatype * @returns `true` if `metatype` is annotated with the `@Controller()` decorator.
(metatype: Type<any>)
| 747 | * @returns `true` if `metatype` is annotated with the `@Controller()` decorator. |
| 748 | */ |
| 749 | private isController(metatype: Type<any>): boolean { |
| 750 | return !!Reflect.getMetadata(CONTROLLER_WATERMARK, metatype); |
| 751 | } |
| 752 | |
| 753 | /** |
| 754 | * @param metatype |
no test coverage detected