Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| ValidatorCatalogLoader | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace pvc\validator\messages; |
| 6 | |
| 7 | use pvc\msg\DomainCatalogFileLoaderPhp; |
| 8 | |
| 9 | class ValidatorCatalogLoader extends DomainCatalogFileLoaderPhp |
| 10 | { |
| 11 | /** |
| 12 | * @throws \pvc\msg\err\NonExistentDomainCatalogDirectoryException |
| 13 | */ |
| 14 | public function __construct() |
| 15 | { |
| 16 | $this->setDomainCatalogDirectory(__DIR__); |
| 17 | } |
| 18 | } |