@@ -108,7 +108,7 @@ |
||
108 | 108 | $routeConfigurators = []; |
109 | 109 | $coreData = $this->getCoreData(); |
110 | 110 | if (empty($method) === false && empty($path) === false) { |
111 | - list(, , , , , $routeConfigurators) = $this->initRouter($coreData)->match($method, $path); |
|
111 | + list(,,,,, $routeConfigurators) = $this->initRouter($coreData)->match($method, $path); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | // configure container |
@@ -86,12 +86,12 @@ |
||
86 | 86 | public function run(ContainerInterface $container): void |
87 | 87 | { |
88 | 88 | foreach ($this->getSeeds($container) as $seederClass) { |
89 | - $this->getIO()->writeInfo("Starting seed for `$seederClass`..." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
89 | + $this->getIO()->writeInfo("Starting seed for `$seederClass`...".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
90 | 90 | $this->executeSeedInit($container, $seederClass); |
91 | 91 | /** @var SeedInterface $seeder */ |
92 | 92 | $seeder = new $seederClass(); |
93 | 93 | $seeder->init($container)->run(); |
94 | - $this->getIO()->writeInfo("Seed finished for `$seederClass`." . PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
94 | + $this->getIO()->writeInfo("Seed finished for `$seederClass`.".PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
95 | 95 | } |
96 | 96 | } |
97 | 97 |
@@ -64,7 +64,7 @@ |
||
64 | 64 | |
65 | 65 | $path = $this->getSeedsPath(); |
66 | 66 | assert($fileSystem->exists($path) === true); |
67 | - $this->getIO()->writeInfo("Seeds `$path` started." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
67 | + $this->getIO()->writeInfo("Seeds `$path` started.".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
68 | 68 | |
69 | 69 | $seedClasses = $fileSystem->requireFile($path); |
70 | 70 | $this->setSeedClasses($seedClasses); |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | { |
74 | 74 | foreach ($this->getMigrations($container) as $class) { |
75 | 75 | assert(is_string($class)); |
76 | - $this->getIO()->writeInfo("Starting migration for `$class`..." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
76 | + $this->getIO()->writeInfo("Starting migration for `$class`...".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
77 | 77 | /** @var MigrationInterface $migration */ |
78 | 78 | $migration = new $class($container); |
79 | 79 | $migration->init($container)->migrate(); |
80 | - $this->getIO()->writeInfo("Migration finished for `$class`." . PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
80 | + $this->getIO()->writeInfo("Migration finished for `$class`.".PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
@@ -90,11 +90,11 @@ discard block |
||
90 | 90 | { |
91 | 91 | foreach ($this->getRollbacks($container) as $class) { |
92 | 92 | assert(is_string($class)); |
93 | - $this->getIO()->writeInfo("Starting rollback for `$class`..." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
93 | + $this->getIO()->writeInfo("Starting rollback for `$class`...".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
94 | 94 | /** @var MigrationInterface $migration */ |
95 | 95 | $migration = new $class($container); |
96 | 96 | $migration->init($container)->rollback(); |
97 | - $this->getIO()->writeInfo("Rollback finished for `$class`." . PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
97 | + $this->getIO()->writeInfo("Rollback finished for `$class`.".PHP_EOL, IoInterface::VERBOSITY_NORMAL); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | $manager = $this->getConnection($container)->getSchemaManager(); |
@@ -59,7 +59,7 @@ |
||
59 | 59 | $path = $this->getMigrationsPath(); |
60 | 60 | assert($fileSystem->exists($path) === true); |
61 | 61 | |
62 | - $this->getIO()->writeInfo("Migrations `$path` started." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
62 | + $this->getIO()->writeInfo("Migrations `$path` started.".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
63 | 63 | |
64 | 64 | $migrationClasses = $fileSystem->requireFile($path); |
65 | 65 | $this->setMigrationClasses($migrationClasses); |
@@ -192,7 +192,7 @@ |
||
192 | 192 | $nextIndex = 0; |
193 | 193 | $hashMap = []; // hash => index |
194 | 194 | $settingsData = []; // index => instance data |
195 | - $getIndex = function (SettingsInterface $instance) use (&$nextIndex, &$hashMap, &$settingsData): int { |
|
195 | + $getIndex = function(SettingsInterface $instance) use (&$nextIndex, &$hashMap, &$settingsData): int { |
|
196 | 196 | $hash = spl_object_hash($instance); |
197 | 197 | if (array_key_exists($hash, $hashMap) === true) { |
198 | 198 | $index = $hashMap[$hash]; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | public static function configureContainer(LimoncelloContainerInterface $container): void |
39 | 39 | { |
40 | 40 | $container[CommandStorageInterface::class] = |
41 | - function (PsrContainerInterface $container): CommandStorageInterface { |
|
41 | + function(PsrContainerInterface $container): CommandStorageInterface { |
|
42 | 42 | $creator = new class |
43 | 43 | { |
44 | 44 | use ClassIsTrait; |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $providerClasses = $appConfig[S::KEY_PROVIDER_CLASSES]; |
80 | 80 | $commandsFolder = $appConfig[S::KEY_COMMANDS_FOLDER]; |
81 | 81 | $commandsFileMask = $appConfig[S::KEY_COMMANDS_FILE_MASK] ?? '*.php'; |
82 | - $commandsPath = $commandsFolder . DIRECTORY_SEPARATOR . $commandsFileMask; |
|
82 | + $commandsPath = $commandsFolder.DIRECTORY_SEPARATOR.$commandsFileMask; |
|
83 | 83 | |
84 | 84 | $storage = $creator->createCommandStorage($commandsPath, $providerClasses); |
85 | 85 |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $this->executeClear($container, $inOut); |
113 | 113 | break; |
114 | 114 | default: |
115 | - $inOut->writeError("Unsupported action `$action`." . PHP_EOL); |
|
115 | + $inOut->writeError("Unsupported action `$action`.".PHP_EOL); |
|
116 | 116 | break; |
117 | 117 | } |
118 | 118 | } |
@@ -137,17 +137,17 @@ discard block |
||
137 | 137 | throw new ConfigurationException(); |
138 | 138 | } |
139 | 139 | |
140 | - $path = $cacheDir . DIRECTORY_SEPARATOR . $class . '.php'; |
|
140 | + $path = $cacheDir.DIRECTORY_SEPARATOR.$class.'.php'; |
|
141 | 141 | |
142 | 142 | $fileSystem = $this->getFileSystem($container); |
143 | 143 | if ($fileSystem->exists($path) === true) { |
144 | 144 | $fileSystem->delete($path); |
145 | - $inOut->writeInfo("Cache file deleted `$path`." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
145 | + $inOut->writeInfo("Cache file deleted `$path`.".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
146 | 146 | |
147 | 147 | return; |
148 | 148 | } |
149 | 149 | |
150 | - $inOut->writeInfo('Cache already clean.' . PHP_EOL); |
|
150 | + $inOut->writeInfo('Cache already clean.'.PHP_EOL); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -174,11 +174,11 @@ discard block |
||
174 | 174 | $settingsData = $settingsProvider->serialize(); |
175 | 175 | $content = $this->composeContent($settingsData, $namespace, $class, $method); |
176 | 176 | |
177 | - $path = $cacheDir . DIRECTORY_SEPARATOR . $class . '.php'; |
|
177 | + $path = $cacheDir.DIRECTORY_SEPARATOR.$class.'.php'; |
|
178 | 178 | $this->getFileSystem($container)->write($path, $content); |
179 | 179 | |
180 | - $inOut->writeInfo('Cache created.' . PHP_EOL); |
|
181 | - $inOut->writeInfo("Cache written to `$path`." . PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
180 | + $inOut->writeInfo('Cache created.'.PHP_EOL); |
|
181 | + $inOut->writeInfo("Cache written to `$path`.".PHP_EOL, IoInterface::VERBOSITY_VERBOSE); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -245,8 +245,8 @@ discard block |
||
245 | 245 | |
246 | 246 | assert( |
247 | 247 | $data !== null, |
248 | - 'It seems the data are not exportable. It is likely to be caused by class instances ' . |
|
249 | - 'that do not implement ` __set_state` magic method required by `var_export`. ' . |
|
248 | + 'It seems the data are not exportable. It is likely to be caused by class instances '. |
|
249 | + 'that do not implement ` __set_state` magic method required by `var_export`. '. |
|
250 | 250 | 'See http://php.net/manual/en/language.oop5.magic.php#object.set-state for more details.' |
251 | 251 | ); |
252 | 252 |
@@ -43,7 +43,7 @@ |
||
43 | 43 | */ |
44 | 44 | public static function configureContainer(LimoncelloContainerInterface $container): void |
45 | 45 | { |
46 | - $container[LoggerInterface::class] = function (PsrContainerInterface $container) { |
|
46 | + $container[LoggerInterface::class] = function(PsrContainerInterface $container) { |
|
47 | 47 | /** @var CacheSettingsProviderInterface $settingsProvider */ |
48 | 48 | $settingsProvider = $container->get(CacheSettingsProviderInterface::class); |
49 | 49 | $appConfig = $settingsProvider->getApplicationConfiguration(); |