@@ -958,7 +958,7 @@ |
||
| 958 | 958 | $discountFacade = $this->createDiscountFacade(); |
| 959 | 959 | $factory = new DiscountBusinessFactory(); |
| 960 | 960 | $container = new Container(); |
| 961 | - $container->set($dependencyType, function () use ($discountRulePluginMock) { |
|
| 961 | + $container->set($dependencyType, function() use ($discountRulePluginMock) { |
|
| 962 | 962 | return [ |
| 963 | 963 | $discountRulePluginMock, |
| 964 | 964 | ]; |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | */ |
| 61 | 61 | protected function deleteQuoteRequestsByIds(array $quoteRequestIds): void |
| 62 | 62 | { |
| 63 | - $this->getTransactionHandler()->handleTransaction(function () use ($quoteRequestIds): void { |
|
| 63 | + $this->getTransactionHandler()->handleTransaction(function() use ($quoteRequestIds): void { |
|
| 64 | 64 | $this->executeDeleteQuoteRequestsByIdsTransaction($quoteRequestIds); |
| 65 | 65 | }); |
| 66 | 66 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | |
| 48 | 48 | $process = new Process(explode(' ', $this->installCommand), $path); |
| 49 | 49 | $process->setTimeout(null); |
| 50 | - $process->run(function ($type, $buffer) use ($logger) { |
|
| 50 | + $process->run(function($type, $buffer) use ($logger) { |
|
| 51 | 51 | $logger->info($buffer); |
| 52 | 52 | }); |
| 53 | 53 | |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | public function install(LoggerInterface $logger) |
| 34 | 34 | { |
| 35 | 35 | $process = new Process(explode(' ', $this->installCommand), APPLICATION_ROOT_DIR, null, null, null); |
| 36 | - $process->run(function ($type, $buffer) use ($logger) { |
|
| 36 | + $process->run(function($type, $buffer) use ($logger) { |
|
| 37 | 37 | $logger->info($buffer); |
| 38 | 38 | }); |
| 39 | 39 | |
@@ -123,7 +123,7 @@ |
||
| 123 | 123 | $this->info('Run command: ' . $command); |
| 124 | 124 | $process = new Process(explode(' ', $command), APPLICATION_ROOT_DIR); |
| 125 | 125 | $process->setTimeout(null); |
| 126 | - $process->run(function ($type, $buffer) { |
|
| 126 | + $process->run(function($type, $buffer) { |
|
| 127 | 127 | echo $buffer; |
| 128 | 128 | }); |
| 129 | 129 | |
@@ -93,7 +93,7 @@ |
||
| 93 | 93 | |
| 94 | 94 | Example: |
| 95 | 95 | - code:npm --build-all will build the client resources for the core, the project Zed and the project Yves code |
| 96 | -EOM; |
|
| 96 | +eom; |
|
| 97 | 97 | $this->setHelp($help); |
| 98 | 98 | |
| 99 | 99 | $this->addOption( |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | public function provide(ContainerInterface $container): ContainerInterface |
| 35 | 35 | { |
| 36 | - $container->set(static::SERVICE_MESSENGER, function () { |
|
| 36 | + $container->set(static::SERVICE_MESSENGER, function() { |
|
| 37 | 37 | return $this->getFacade(); |
| 38 | 38 | }); |
| 39 | 39 | |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | public function provide(ContainerInterface $container): ContainerInterface |
| 38 | 38 | { |
| 39 | 39 | $container->set(static::BC_FEATURE_FLAG_TWIG_TRANSLATOR, false); |
| 40 | - $container->set(static::SERVICE_TRANSLATOR, function () { |
|
| 40 | + $container->set(static::SERVICE_TRANSLATOR, function() { |
|
| 41 | 41 | return $this->getFactory()->createTranslator(); |
| 42 | 42 | }); |
| 43 | 43 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | public function provide(ContainerInterface $container): ContainerInterface |
| 39 | 39 | { |
| 40 | 40 | $container->set(static::BC_FEATURE_FLAG_TWIG_TRANSLATOR, false); |
| 41 | - $container->set(static::SERVICE_TRANSLATOR, function () { |
|
| 41 | + $container->set(static::SERVICE_TRANSLATOR, function() { |
|
| 42 | 42 | return $this->getFactory()->getTranslatorPlugin(); |
| 43 | 43 | }); |
| 44 | 44 | |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | protected function getEnvironmentVariableValueByNameFunction(): TwigFunction |
| 47 | 47 | { |
| 48 | - return new TwigFunction(static::FUNCTION_NAME_GET_ENV, function (string $which) { |
|
| 48 | + return new TwigFunction(static::FUNCTION_NAME_GET_ENV, function(string $which) { |
|
| 49 | 49 | return $this->getEnvironmentVariableValueByName($which); |
| 50 | 50 | }); |
| 51 | 51 | } |