diff --git a/src/Models/Api/EventGeneratorsListApiHandler.php b/src/Api/EventGeneratorsListApiHandler.php similarity index 100% rename from src/Models/Api/EventGeneratorsListApiHandler.php rename to src/Api/EventGeneratorsListApiHandler.php diff --git a/src/Models/Api/EventsListApiHandler.php b/src/Api/EventsListApiHandler.php similarity index 100% rename from src/Models/Api/EventsListApiHandler.php rename to src/Api/EventsListApiHandler.php diff --git a/src/Models/ApplicationModuleInterface.php b/src/Application/ApplicationModuleInterface.php similarity index 90% rename from src/Models/ApplicationModuleInterface.php rename to src/Application/ApplicationModuleInterface.php index 83c4b39..19a01d7 100644 --- a/src/Models/ApplicationModuleInterface.php +++ b/src/Application/ApplicationModuleInterface.php @@ -1,9 +1,13 @@ container; } - + protected function createContainer() { $configurator = new Configurator; diff --git a/src/Models/EnvironmentConfig.php b/src/Application/EnvironmentConfig.php similarity index 95% rename from src/Models/EnvironmentConfig.php rename to src/Application/EnvironmentConfig.php index dcfc6ad..279d905 100644 --- a/src/Models/EnvironmentConfig.php +++ b/src/Application/EnvironmentConfig.php @@ -1,6 +1,6 @@ getContainerBuilder(); $builder->addDefinition($this->prefix('config_overrider')) - ->setType('Crm\ApplicationModule\Config\LocalConfig') + ->setType('Crm\ApplicationModule\Models\Config\LocalConfig') ->setArguments([$config]) ->setAutowired(true); } diff --git a/src/Models/Config/ConfigsCache.php b/src/Models/Config/ConfigsCache.php index fec6630..93bae29 100644 --- a/src/Models/Config/ConfigsCache.php +++ b/src/Models/Config/ConfigsCache.php @@ -1,6 +1,6 @@