Introduced configurations and application object (test code)

This commit is contained in:
2020-12-15 21:46:46 +01:00
parent cf30a1280d
commit bf79e9cee7
7 changed files with 131 additions and 8 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Core\Configuration;
use Core\Configuration\Factories\FileFactory;
use Core\Configuration\Objects\File;
/**
* Class FileSystem
* @package Core\Configuration
* @author Romano Schoonheim https://github.com/romano1996
*/
class FileSystem
{
private const CONFIGURATION_DIRECTORY = __DIR__ . '/../../config/';
private $fileFactory;
public function __construct(FileFactory $factory)
{
}
/**
* @return File[]
*/
public function getConfigurationFiles(): array
{
return [];
}
}