Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | abstract class AbstractBuilder implements AdapterBuilderInterface |
||
18 | { |
||
19 | /** |
||
20 | * Filesystem info class required for builder |
||
21 | */ |
||
22 | protected const FILE_SYSTEM_INFO_CLASS = ''; |
||
23 | |||
24 | /** |
||
25 | * @var FileSystemInfoInterface |
||
26 | */ |
||
27 | protected $fsInfo; |
||
28 | |||
29 | /** |
||
30 | * @param FileSystemInfoInterface $fsInfo |
||
31 | * |
||
32 | * @throws StorageException |
||
33 | */ |
||
34 | public function __construct(FileSystemInfoInterface $fsInfo) |
||
47 |