Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
Setup/src/Spryker/Zed/Setup/Communication/Console/Npm/RunnerConsole.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 
55 55
 Example:
56 56
  - code:npm --build-all  will build the client resources for the core, the project zed and the project yves code
57
-EOM
57
+eom
58 58
         );
59 59
 
60 60
         $this->addOption(
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Glossary/src/Spryker/Zed/Glossary/Persistence/GlossaryQueryContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -316,7 +316,7 @@
 block discarded – undo
316 316
          *
317 317
          * @return string
318 318
          */
319
-        $quoteFunction = function ($value) {
319
+        $quoteFunction = function($value) {
320 320
             return "'$value'";
321 321
         };
322 322
 
Please login to merge, or discard this patch.
src/Spryker/Zed/Discount/Communication/Controller/VoucherController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 
107 107
         $streamedResponse = new StreamedResponse();
108 108
 
109
-        $streamedResponse->setCallback(function () use ($generatedVouchers) {
109
+        $streamedResponse->setCallback(function() use ($generatedVouchers) {
110 110
             $csvHandle = fopen('php://output', 'w+');
111 111
             fputcsv($csvHandle, ['Voucher Code']);
112 112
 
Please login to merge, or discard this patch.
Specification/CollectorSpecification/CollectorAndSpecification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         return array_uintersect(
46 46
             $lefCollectedItems,
47 47
             $rightCollectedItems,
48
-            function (DiscountableItemTransfer $collected, DiscountableItemTransfer $toCollect) {
48
+            function(DiscountableItemTransfer $collected, DiscountableItemTransfer $toCollect) {
49 49
                 return strcmp(spl_object_hash($collected->getOriginalItemCalculatedDiscounts()), spl_object_hash($toCollect->getOriginalItemCalculatedDiscounts()));
50 50
             }
51 51
         );
Please login to merge, or discard this patch.
src/Spryker/Zed/ProductSearch/Communication/Form/SearchPreferencesForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,10 +158,10 @@
 block discarded – undo
158 158
     protected function addBoolModelTransformer(FormBuilderInterface $builder, $fieldName)
159 159
     {
160 160
         $builder->get($fieldName)->addModelTransformer(new CallbackTransformer(
161
-            function ($originalValue) {
161
+            function($originalValue) {
162 162
                 return $originalValue ? 'yes' : 'no';
163 163
             },
164
-            function ($submittedValue) {
164
+            function($submittedValue) {
165 165
                 return $submittedValue === 'yes' ? true : false;
166 166
             }
167 167
         ));
Please login to merge, or discard this patch.
Discount/src/Spryker/Zed/Discount/Persistence/DiscountQueryContainer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -203,8 +203,8 @@
 block discarded – undo
203 203
     public function queryDiscountName($discountName)
204 204
     {
205 205
         return $this->getFactory()
206
-           ->createDiscountQuery()
207
-           ->filterByDisplayName($discountName);
206
+            ->createDiscountQuery()
207
+            ->filterByDisplayName($discountName);
208 208
     }
209 209
 
210 210
     /**
Please login to merge, or discard this patch.
Bundles/Kernel/src/Spryker/Shared/Kernel/ClassResolver/ResolverCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     protected function getUnresolvableCollection()
38 38
     {
39 39
         if (self::$unresolvableCollection === null) {
40
-            $callback = function () {
40
+            $callback = function() {
41 41
                 return $this->getData();
42 42
             };
43 43
 
Please login to merge, or discard this patch.
DummyPayment/src/Spryker/Yves/DummyPayment/Form/CreditCardSubForm.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@
 block discarded – undo
76 76
     public function buildForm(FormBuilderInterface $builder, array $options)
77 77
     {
78 78
         $this->addCardType($builder)
79
-             ->addCardNumber($builder)
80
-             ->addNameOnCard($builder)
81
-             ->addCardExpiresMonth($builder, $options)
82
-             ->addCardExpiresYear($builder, $options)
83
-             ->addCardSecurityCode($builder);
79
+                ->addCardNumber($builder)
80
+                ->addNameOnCard($builder)
81
+                ->addCardExpiresMonth($builder, $options)
82
+                ->addCardExpiresYear($builder, $options)
83
+                ->addCardSecurityCode($builder);
84 84
     }
85 85
 
86 86
     /**
Please login to merge, or discard this patch.
src/Spryker/Zed/Discount/Business/QueryString/SpecificationBuilder.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
 
150 150
                 case $this->isValue($token):
151 151
                      $value = $this->clearQuotes($token);
152
-                     $clauseTransfer->setValue($value);
152
+                        $clauseTransfer->setValue($value);
153 153
 
154
-                     $this->clauseValidator->validateClause($clauseTransfer);
154
+                        $this->clauseValidator->validateClause($clauseTransfer);
155 155
 
156 156
                     if ($leftNode === null) {
157 157
                         $leftNode = $this->specificationProvider->getSpecificationContext($clauseTransfer);
@@ -308,8 +308,8 @@  discard block
 block discarded – undo
308 308
      */
309 309
     protected function isValue($token)
310 310
     {
311
-         $first = substr($token, 0, 1);
312
-         $last = substr($token, -1);
311
+            $first = substr($token, 0, 1);
312
+            $last = substr($token, -1);
313 313
 
314 314
         if ($first === '"' && $last === '"') {
315 315
             return true;
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
             return true;
320 320
         }
321 321
 
322
-         return false;
322
+            return false;
323 323
     }
324 324
 
325 325
 }
Please login to merge, or discard this patch.