| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | final class ShouldFailChecker { |
||
| 15 | use \Nette\SmartObject; |
||
| 16 | |||
| 17 | public const ANNOTATION_NAME = "fail"; |
||
| 18 | |||
| 19 | private Reader $annotationsReader; |
||
| 20 | |||
| 21 | public function __construct(Reader $annotationsReader) { |
||
| 22 | $this->annotationsReader = $annotationsReader; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function shouldFail(string $class, string $method): bool { |
||
| 27 | } |
||
| 28 | } |
||
| 29 | ?> |