| Total Complexity | 7 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class AssetPathValidator implements ValidatorInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string[] |
||
| 14 | */ |
||
| 15 | private const ASSET_SUB_FOLDERS = ['img/album', 'img/artist']; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | private const PERMISSIONS = 0o766; |
||
|
|
|||
| 21 | |||
| 22 | public function __construct( |
||
| 25 | } |
||
| 26 | |||
| 27 | public function validate(): void |
||
| 64 |