Completed
Pull Request — master (#18)
by
unknown
01:59
created
Command/SmokeTestRunCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             $testNames = $this->getTestNames();
119 119
             $smokeTests = array_filter(
120 120
                 $smokeTests,
121
-                function ($key) use ($test) {
121
+                function($key) use ($test) {
122 122
                     return $key === $test;
123 123
                 },
124 124
                 ARRAY_FILTER_USE_KEY
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
             if (!empty($skipTests)) {
152 152
                 $smokeTests = array_filter(
153 153
                     $smokeTests,
154
-                    function ($smokeTestInfo) use ($skipTests, &$skipped) {
154
+                    function($smokeTestInfo) use ($skipTests, &$skipped) {
155 155
                         $key = $smokeTestInfo['id'];
156 156
                         $skipping = in_array($key, $skipTests);
157 157
                         if ($skipping) {
Please login to merge, or discard this patch.
Tests/Serializer/Metadata/Driver/AnnotationDriverTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     protected function setUp()
33 33
     {
34
-       static::bootKernel();
34
+        static::bootKernel();
35 35
 
36 36
         $this->container = static::$kernel->getContainer();
37 37
         $this->serializer = $this->container->get('serializer');
Please login to merge, or discard this patch.