| Total Complexity | 4 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class FileStorageDataLayerContainer |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var ApieContext |
||
| 11 | */ |
||
| 12 | private $apieContext; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $storagePath; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var FileStorageDataLayer[] |
||
| 21 | */ |
||
| 22 | private $instantiated = []; |
||
| 23 | |||
| 24 | public function __construct(string $storagePath, ApieContext $apieContext) |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getCurrentFileStorageDataLayer(): FileStorageDataLayer |
||
| 49 |