Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
RegexMacFilename | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | /** |
4 | * @author: Doug Wilbourne (dougwilbourne@gmail.com) |
5 | */ |
6 | declare(strict_types=1); |
7 | |
8 | namespace pvc\regex\filename; |
9 | |
10 | /** |
11 | * Class RegexMacFilename |
12 | */ |
13 | class RegexMacFilename extends RegexUnixFilename |
14 | { |
15 | public function __construct() |
16 | { |
17 | parent::__construct(); |
18 | $label = 'valid MacOS filename'; |
19 | $this->setLabel($label); |
20 | } |
21 | } |