]> git.mxchange.org Git - friendica.git/commit
Restructure (P)Config to follow new paradigm
authorPhilipp <admin@philipp.info>
Sat, 23 Oct 2021 09:29:16 +0000 (11:29 +0200)
committerPhilipp <admin@philipp.info>
Tue, 26 Oct 2021 20:11:06 +0000 (22:11 +0200)
commitab83d0dd27e46e733ecb49f25789bfb318852ac7
treefbc40f545246c7dc2e7d35f84de0f89ccf91315c
parent68046573a4171dcbd5db75a991487bafa4b4370f
Restructure (P)Config to follow new paradigm
64 files changed:
src/App.php
src/App/Mode.php
src/Console/AutomaticInstallation.php
src/Console/DatabaseStructure.php
src/Core/BaseConfig.php [deleted file]
src/Core/BasePConfig.php [deleted file]
src/Core/Config/Cache.php [deleted file]
src/Core/Config/Cache/Cache.php [new file with mode: 0644]
src/Core/Config/Cache/ConfigFileLoader.php [new file with mode: 0644]
src/Core/Config/Factory/ConfigFactory.php [new file with mode: 0644]
src/Core/Config/IConfig.php
src/Core/Config/JitConfig.php [deleted file]
src/Core/Config/Model/Config.php [new file with mode: 0644]
src/Core/Config/Model/DbaUtils.php [new file with mode: 0644]
src/Core/Config/PreloadConfig.php [deleted file]
src/Core/Config/Type/BaseConfig.php [new file with mode: 0644]
src/Core/Config/Type/JitConfig.php [new file with mode: 0644]
src/Core/Config/Type/PreloadConfig.php [new file with mode: 0644]
src/Core/Installer.php
src/Core/PConfig/Cache.php [deleted file]
src/Core/PConfig/Cache/Cache.php [new file with mode: 0644]
src/Core/PConfig/Factory/PConfigFactory.php [new file with mode: 0644]
src/Core/PConfig/IPConfig.php
src/Core/PConfig/JitPConfig.php [deleted file]
src/Core/PConfig/Model/PConfig.php [new file with mode: 0644]
src/Core/PConfig/PreloadPConfig.php [deleted file]
src/Core/PConfig/Type/BasePConfig.php [new file with mode: 0644]
src/Core/PConfig/Type/JitPConfig.php [new file with mode: 0644]
src/Core/PConfig/Type/PreloadPConfig.php [new file with mode: 0644]
src/Database/Database.php
src/Factory/ConfigFactory.php [deleted file]
src/Model/Config/Config.php [deleted file]
src/Model/Config/DbaConfig.php [deleted file]
src/Model/Config/PConfig.php [deleted file]
src/Module/Admin/Summary.php
src/Module/Install.php
src/Util/ConfigFileLoader.php [deleted file]
src/Util/Profiler.php
static/dependencies.config.php
tests/FixtureTest.php
tests/Util/AppMockTrait.php
tests/functional/DependencyCheckTest.php
tests/src/App/ModeTest.php
tests/src/Console/AutomaticInstallationConsoleTest.php
tests/src/Core/Cache/DatabaseCacheTest.php
tests/src/Core/Config/Cache/CacheTest.php [new file with mode: 0644]
tests/src/Core/Config/Cache/ConfigFileLoaderTest.php [new file with mode: 0644]
tests/src/Core/Config/CacheTest.php [deleted file]
tests/src/Core/Config/ConfigTest.php
tests/src/Core/Config/JitConfigTest.php
tests/src/Core/Config/PreloadConfigTest.php
tests/src/Core/InstallerTest.php
tests/src/Core/Lock/DatabaseLockDriverTest.php
tests/src/Core/Lock/SemaphoreLockTest.php
tests/src/Core/PConfig/Cache/CacheTest.php [new file with mode: 0644]
tests/src/Core/PConfig/CacheTest.php [deleted file]
tests/src/Core/PConfig/JitPConfigTest.php
tests/src/Core/PConfig/PConfigTest.php
tests/src/Core/PConfig/PreloadPConfigTest.php
tests/src/Core/StorageManagerTest.php
tests/src/Model/ProcessTest.php
tests/src/Model/Storage/DatabaseStorageTest.php
tests/src/Util/Config/ConfigFileLoaderTest.php [deleted file]
tests/src/Util/ProfilerTest.php