Passed
Branch master (802f32)
by Dāvis
03:41
created
DependencyInjection/Component/Captcha.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@
 block discarded – undo
44 44
             
45 45
             if (!isset($clientConfig['type'])) {
46 46
                 throw new InvalidConfigurationException(sprintf(
47
-                   'sludio_helper_captcha_client.clients.%s config entry is missing the "type" key.',
48
-                   $key
49
-               ));
47
+                    'sludio_helper_captcha_client.clients.%s config entry is missing the "type" key.',
48
+                    $key
49
+                ));
50 50
             }
51 51
 
52 52
             $this->type = $clientConfig['type'];
Please login to merge, or discard this patch.
DependencyInjection/Component/Oauth.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,9 +131,9 @@
 block discarded – undo
131 131
 
132 132
             if (!isset($clientConfig['type'])) {
133 133
                 throw new InvalidConfigurationException(sprintf(
134
-                   'Your "sludio_helper_oauth_client.clients.%s" config entry is missing the "type" key.',
135
-                   $key
136
-               ));
134
+                    'Your "sludio_helper_oauth_client.clients.%s" config entry is missing the "type" key.',
135
+                    $key
136
+                ));
137 137
             }
138 138
 
139 139
             $this->type = $clientConfig['type'];
Please login to merge, or discard this patch.
Script/Controller/ScriptController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
             $application = new Application($kernel);
44 44
             $application->setAutoExit(false);
45 45
             $input = new ArrayInput(array(
46
-               'command' => 'cache:'.$command,
47
-               '--env' => $kernel->getEnvironment(),
46
+                'command' => 'cache:'.$command,
47
+                '--env' => $kernel->getEnvironment(),
48 48
             ));
49 49
             $application->run($input);
50 50
             $data['success'] = 1;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         $application->setAutoExit(false);
67 67
 
68 68
         $input = new ArrayInput(array(
69
-           'command' => 'ibrows:sonatatranslationbundle:clearcache'
69
+            'command' => 'ibrows:sonatatranslationbundle:clearcache'
70 70
         ));
71 71
         $application->run($input);
72 72
         $data['success'] = 1;
Please login to merge, or discard this patch.