@@ -61,7 +61,7 @@ |
||
61 | 61 | "Invalid Policies folder `$policiesFolder`." |
62 | 62 | ); |
63 | 63 | assert(empty($policiesFileMask) === false, "Invalid Policies file mask `$policiesFileMask`."); |
64 | - $policiesPath = $policiesFolder . DIRECTORY_SEPARATOR . $policiesFileMask; |
|
64 | + $policiesPath = $policiesFolder.DIRECTORY_SEPARATOR.$policiesFileMask; |
|
65 | 65 | |
66 | 66 | $topPolicyName = $defaults[static::KEY_TOP_POLICY_NAME]; |
67 | 67 |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | public static function configureContainer(LimoncelloContainerInterface $container): void |
39 | 39 | { |
40 | 40 | $container[CookieJarInterface::class] = |
41 | - function (PsrContainerInterface $container): CookieJarInterface { |
|
41 | + function(PsrContainerInterface $container): CookieJarInterface { |
|
42 | 42 | $settings = $container->get(SettingsProviderInterface::class)->get(CookieSettings::class); |
43 | 43 | |
44 | 44 | return new CookieJar( |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | }; |
52 | 52 | |
53 | 53 | $container[CookieFunctionsInterface::class] = |
54 | - function (PsrContainerInterface $container): CookieFunctionsInterface { |
|
54 | + function(PsrContainerInterface $container): CookieFunctionsInterface { |
|
55 | 55 | return new CookieFunctions(); |
56 | 56 | }; |
57 | 57 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | return [ |
101 | 101 | [ |
102 | 102 | static::OPTION_NAME => static::OPT_PATH, |
103 | - static::OPTION_DESCRIPTION => 'Path to a list of migrations or seeds. ' . |
|
103 | + static::OPTION_DESCRIPTION => 'Path to a list of migrations or seeds. '. |
|
104 | 104 | 'If not given a path from settings will be used.', |
105 | 105 | static::OPTION_SHORTCUT => 'i', |
106 | 106 | static::OPTION_MODE => static::OPTION_MODE__REQUIRED, |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $this->createSeedRunner($inOut, $path, $seedInit)->run($container); |
149 | 149 | break; |
150 | 150 | default: |
151 | - $inOut->writeError("Unsupported action `$action`." . PHP_EOL); |
|
151 | + $inOut->writeError("Unsupported action `$action`.".PHP_EOL); |
|
152 | 152 | break; |
153 | 153 | } |
154 | 154 | } |
@@ -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); |
@@ -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 |