| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | final class DataProvider { |
||
| 16 | use \Nette\SmartObject; |
||
| 17 | |||
| 18 | public const ANNOTATION_NAME = "data"; |
||
| 19 | |||
| 20 | private Reader $annotationsReader; |
||
| 21 | |||
| 22 | public function __construct(Reader $annotationsReader) { |
||
| 23 | $this->annotationsReader = $annotationsReader; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getData(string $class, string $method): array { |
||
| 34 | } |
||
| 35 | } |
||
| 36 | ?> |