Completed
Push — master ( f2a463...1bdead )
by Dmitrij
9s
created
src/AppContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function bind($key, $value)
77 77
     {
78
-        if (! array_key_exists($key, $this->registry)) {
78
+        if (!array_key_exists($key, $this->registry)) {
79 79
             $this->registry[$key] = $value;
80 80
         } else {
81 81
             throw new \Exception("{$key} is already bound in the container.");
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function get($key)
91 91
     {
92
-        if (! array_key_exists($key, $this->registry)) {
92
+        if (!array_key_exists($key, $this->registry)) {
93 93
             throw new \Exception("No {$key} is bound in the container.");
94 94
         }
95 95
 
Please login to merge, or discard this patch.
src/Commands/Classes/CreateObserverCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
         $jobs[ReplaceText::class]->handle(
60 60
             '{{namespace}}',
61
-            $namespace[0] . '\\' . $namespace[1]  . '\\',
61
+            $namespace[0] . '\\' . $namespace[1] . '\\',
62 62
             $this->appContainer->get('app_dir') . '/app/code/' . $namespace[0] . '/' . $namespace[1] . '/Observer/'
63 63
         );
64 64
 
Please login to merge, or discard this patch.
routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 use \HotRodCli\Api\GetCommand;
8 8
 
9 9
 /** @var \Slim\App $api */
10
-$api->post('/create/{command}', function (ServerRequestInterface $request, ResponseInterface $response, $args) use ($app) {
10
+$api->post('/create/{command}', function(ServerRequestInterface $request, ResponseInterface $response, $args) use ($app) {
11 11
     return $response->getBody()->write($app->resolve(Processor::class)($request, $args));
12 12
 });
13 13
 
@@ -19,6 +19,6 @@  discard block
 block discarded – undo
19 19
     return $response->getBody()->write($app->resolve(GetCommand::class)($args));
20 20
 });
21 21
 
22
-$api->get('/', function (ServerRequestInterface $request, ResponseInterface $response) {
22
+$api->get('/', function(ServerRequestInterface $request, ResponseInterface $response) {
23 23
     return $response->withStatus(302)->withHeader('Location', '/dist/ui-app');
24 24
 });
Please login to merge, or discard this patch.
src/Jobs/Js/AddMageInit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $content = file_get_contents($file);
41 41
         $array = [];
42 42
         $array[$data['bind']][$data['name']]['text'] = 'HELLO WORLD';
43
-        $content .= PHP_EOL . PHP_EOL. $this->scriptTags['open'] . PHP_EOL .
43
+        $content .= PHP_EOL . PHP_EOL . $this->scriptTags['open'] . PHP_EOL .
44 44
             json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL . $this->scriptTags['close'] . PHP_EOL;
45 45
         file_put_contents($file, $content);
46 46
     }
Please login to merge, or discard this patch.