Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
fileExplorer | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * @author: Doug Wilbourne (dougwilbourne@gmail.com) |
5 | */ |
6 | declare(strict_types=1); |
7 | |
8 | namespace pvc\view; |
9 | |
10 | use pvc\html\tag\factory\TagFactory; |
11 | |
12 | /** |
13 | * Class fileExplorer |
14 | */ |
15 | class fileExplorer |
16 | { |
17 | protected TagFactory $tagFactory; |
18 | |
19 | public function __construct(TagFactory $tagFactory) |
20 | { |
21 | $this->tagFactory = $tagFactory; |
22 | } |
23 | } |