Completed
Push — a-bulwa-travis-is-2 ( 0d480d...8a564e )
by Kamil
94:47 queued 55:12
created
src/Sylius/Bundle/PaymentBundle/Form/Type/CreditCardType.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -30,24 +30,24 @@
 block discarded – undo
30 30
             ->add('type', 'choice', [
31 31
                 'label' => 'sylius.form.credit_card.type',
32 32
                 'expanded' => true,
33
-              ])
34
-              ->add('cardholderName', 'text', [
33
+                ])
34
+                ->add('cardholderName', 'text', [
35 35
                 'label' => 'sylius.form.credit_card.cardholder_name',
36
-              ])
37
-              ->add('number', 'text', [
38
-                  'label' => 'sylius.form.credit_card.number',
39
-              ])
40
-              ->add('securityCode', 'text', [
41
-                  'label' => 'sylius.form.credit_card.security_code',
42
-              ])
43
-              ->add('expiryMonth', 'choice', [
44
-                  'label' => 'sylius.form.credit_card.expiry_month',
45
-                  'choices' => $this->getMonthChoices(),
46
-              ])
47
-              ->add('expiryYear', 'choice', [
48
-                  'label' => 'sylius.form.credit_card.expiry_year',
49
-                  'choices' => $this->getViableYears(),
50
-              ])
36
+                ])
37
+                ->add('number', 'text', [
38
+                    'label' => 'sylius.form.credit_card.number',
39
+                ])
40
+                ->add('securityCode', 'text', [
41
+                    'label' => 'sylius.form.credit_card.security_code',
42
+                ])
43
+                ->add('expiryMonth', 'choice', [
44
+                    'label' => 'sylius.form.credit_card.expiry_month',
45
+                    'choices' => $this->getMonthChoices(),
46
+                ])
47
+                ->add('expiryYear', 'choice', [
48
+                    'label' => 'sylius.form.credit_card.expiry_year',
49
+                    'choices' => $this->getViableYears(),
50
+                ])
51 51
         ;
52 52
     }
53 53
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/PaymentBundle/Form/Type/PaymentMethodChoiceType.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,8 +102,7 @@
 block discarded – undo
102 102
      */
103 103
     private function createChoiceList()
104 104
     {
105
-        return function (Options $options) 
106
-        {
105
+        return function (Options $options) {
107 106
             if (isset($options['subject'])) {
108 107
                 $resolvedMethods = $this->paymentMethodsResolver->getSupportedMethods($options['subject']);
109 108
             } else {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Tests/Fixture/CurrencyFixtureTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function currencies_can_be_set()
38 38
     {
39
-       $this->assertConfigurationIsValid([['currencies' => ['EUR' => true, 'USD' => false, 'PLN' => true]]], 'currencies');
39
+        $this->assertConfigurationIsValid([['currencies' => ['EUR' => true, 'USD' => false, 'PLN' => true]]], 'currencies');
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.
Bundle/CoreBundle/Validator/Constraints/HasEnabledEntityValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     public function validate($entity, Constraint $constraint)
56 56
     {
57 57
         if (!$constraint instanceof HasEnabledEntity) {
58
-            throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\HasEnabledEntity');
58
+            throw new UnexpectedTypeException($constraint, __NAMESPACE__ . '\HasEnabledEntity');
59 59
         }
60 60
 
61 61
         $enabled = $this->accessor->getValue($entity, $constraint->enabledPath);
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Application/Kernel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
     {
145 145
         $rootDir = $this->getRootDir();
146 146
 
147
-        $loader->load($rootDir.'/config/config_'.$this->environment.'.yml');
147
+        $loader->load($rootDir . '/config/config_' . $this->environment . '.yml');
148 148
 
149
-        if (is_file($file = $rootDir.'/config/config_'.$this->environment.'.local.yml')) {
149
+        if (is_file($file = $rootDir . '/config/config_' . $this->environment . '.local.yml')) {
150 150
             $loader->load($file);
151 151
         }
152 152
     }
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
     public function getCacheDir()
158 158
     {
159 159
         if ($this->isVagrantEnvironment()) {
160
-            return '/dev/shm/sylius/cache/'.$this->environment;
160
+            return '/dev/shm/sylius/cache/' . $this->environment;
161 161
         }
162 162
 
163 163
         return parent::getCacheDir();
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/Command/AbstractRoleCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             $email = $this->getHelper('dialog')->askAndValidate(
33 33
                 $output,
34 34
                 'Please enter an email:',
35
-                function($email) {
35
+                function ($email) {
36 36
                     if (empty($email)) {
37 37
                         throw new \Exception('Email can not be empty');
38 38
                     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ShippingBundle/Form/Type/ShippingMethodType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
         $view->vars['prototypes'] = [];
118 118
         foreach ($form->getConfig()->getAttribute('prototypes') as $group => $prototypes) {
119 119
             foreach ($prototypes as $type => $prototype) {
120
-                $view->vars['prototypes'][$group.'_'.$type] = $prototype->createView($view);
120
+                $view->vars['prototypes'][$group . '_' . $type] = $prototype->createView($view);
121 121
             }
122 122
         }
123 123
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/RequestConfiguration.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function getRouteName($name)
160 160
     {
161
-        $sectionPrefix = $this->getSection() ? $this->getSection().'_' : '';
161
+        $sectionPrefix = $this->getSection() ? $this->getSection() . '_' : '';
162 162
 
163 163
         return sprintf('%s_%s%s_%s', $this->metadata->getApplicationName(), $sectionPrefix, $this->metadata->getName(), $name);
164 164
     }
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
             return null;
201 201
         }
202 202
 
203
-        return '#'.$redirect['hash'];
203
+        return '#' . $redirect['hash'];
204 204
     }
205 205
 
206 206
     /**
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * @param $name
166 166
      *
167
-     * @return mixed|null|string
167
+     * @return string
168 168
      */
169 169
     public function getRedirectRoute($name)
170 170
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @param object|null $resource
227
+     * @param \Sylius\Component\Resource\Model\ResourceInterface|null $resource
228 228
      *
229 229
      * @return array
230 230
      */
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
     }
344 344
 
345 345
     /**
346
-     * @param $parameter
346
+     * @param string $parameter
347 347
      * @param array $defaults
348 348
      *
349 349
      * @return array
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
     /**
424 424
      * @param null $message
425 425
      *
426
-     * @return mixed|null
426
+     * @return string
427 427
      */
428 428
     public function getFlashMessage($message)
429 429
     {
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
     }
448 448
 
449 449
     /**
450
-     * @return mixed|null
450
+     * @return string
451 451
      */
452 452
     public function getSerializationVersion()
453 453
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Doctrine/ORM/EntityRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
             } elseif ('' !== $value) {
94 94
                 $parameter = str_replace('.', '_', $property);
95 95
                 $queryBuilder
96
-                    ->andWhere($queryBuilder->expr()->eq($name, ':'.$parameter))
96
+                    ->andWhere($queryBuilder->expr()->eq($name, ':' . $parameter))
97 97
                     ->setParameter($parameter, $value)
98 98
                 ;
99 99
             }
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     protected function getPropertyName($name)
122 122
     {
123 123
         if (false === strpos($name, '.')) {
124
-            return 'o'.'.'.$name;
124
+            return 'o' . '.' . $name;
125 125
         }
126 126
 
127 127
         return $name;
Please login to merge, or discard this patch.