Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| CTypeTesterPrintable | |
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 | /** |
| 4 | * @author: Doug Wilbourne (dougwilbourne@gmail.com) |
| 5 | */ |
| 6 | declare(strict_types=1); |
| 7 | |
| 8 | namespace pvc\validator\val_tester\ctype; |
| 9 | |
| 10 | use pvc\validator\val_tester\callable\CallableTester; |
| 11 | |
| 12 | /** |
| 13 | * Class CTypeTesterPrintable |
| 14 | * @extends CallableTester<string> |
| 15 | */ |
| 16 | class CTypeTesterPrintable extends CallableTester |
| 17 | { |
| 18 | public function __construct() |
| 19 | { |
| 20 | parent::__construct('ctype_print'); |
| 21 | } |
| 22 | } |