Completed
Push — remove-content-bundle ( 201341 )
by Kamil
34:43
created
src/Sylius/Bundle/UiBundle/Twig/PercentageExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     {
36 36
         $percentage = $number * 100;
37 37
 
38
-        return $percentage.' %';
38
+        return $percentage . ' %';
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/GridBundle/Doctrine/DBAL/ExpressionBuilder.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     {
77 77
         $this->queryBuilder->setParameter($field, $value);
78 78
 
79
-        return $this->queryBuilder->expr()->eq($field, ':'.$field);
79
+        return $this->queryBuilder->expr()->eq($field, ':' . $field);
80 80
     }
81 81
 
82 82
     /**
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     {
87 87
         $this->queryBuilder->setParameter($field, $value);
88 88
 
89
-        return $this->queryBuilder->expr()->neq($field, ':'.$field);
89
+        return $this->queryBuilder->expr()->neq($field, ':' . $field);
90 90
     }
91 91
 
92 92
     /**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function lessThan($field, $value)
96 96
     {
97
-        $this->queryBuilder->andWhere($field.' < :'.$field)->setParameter($field, $value);
97
+        $this->queryBuilder->andWhere($field . ' < :' . $field)->setParameter($field, $value);
98 98
     }
99 99
 
100 100
     /**
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function lessThanOrEqual($field, $value)
104 104
     {
105
-        $this->queryBuilder->andWhere($field.' =< :'.$field)->setParameter($field, $value);
105
+        $this->queryBuilder->andWhere($field . ' =< :' . $field)->setParameter($field, $value);
106 106
     }
107 107
 
108 108
     /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      */
111 111
     public function greaterThan($field, $value)
112 112
     {
113
-        $this->queryBuilder->andWhere($field.' > :'.$field)->setParameter($field, $value);
113
+        $this->queryBuilder->andWhere($field . ' > :' . $field)->setParameter($field, $value);
114 114
     }
115 115
 
116 116
     /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     public function greaterThanOrEqual($field, $value)
120 120
     {
121
-        $this->queryBuilder->andWhere($field.' => :%s'.$field)->setParameter($field, $value);
121
+        $this->queryBuilder->andWhere($field . ' => :%s' . $field)->setParameter($field, $value);
122 122
     }
123 123
 
124 124
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/GridBundle/Doctrine/PHPCRODM/ExpressionVisitor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function walkCompositeExpression(CompositeExpression $expr, AbstractNode $parentNode)
107 107
     {
108
-        switch($expr->getType()) {
108
+        switch ($expr->getType()) {
109 109
             case CompositeExpression::TYPE_AND:
110 110
                 $node = $parentNode->andX();
111 111
                 break;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 break;
129 129
             }
130 130
 
131
-            switch($expr->getType()) {
131
+            switch ($expr->getType()) {
132 132
                 case CompositeExpression::TYPE_AND:
133 133
                     $parentNode = $parentNode->andX();
134 134
                     break;
Please login to merge, or discard this patch.
Sylius/Bundle/GridBundle/Tests/Doctrine/PHPCRODM/ExpressionVisitorTest.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -108,17 +108,17 @@  discard block
 block discarded – undo
108 108
         return [
109 109
             [
110 110
                 Comparison::IN,
111
-                [ 'one' ],
111
+                ['one'],
112 112
                 'ConstraintOrx ( jcr.operator.equal.to ( OperandDynamicField(o.hello) OperandStaticLiteral("one") ) )'
113 113
             ],
114 114
             [
115 115
                 Comparison::IN,
116
-                [ 'one', 'two', 'three' ],
116
+                ['one', 'two', 'three'],
117 117
                 'ConstraintOrx ( jcr.operator.equal.to ( OperandDynamicField(o.hello) OperandStaticLiteral("one") ) jcr.operator.equal.to ( OperandDynamicField(o.hello) OperandStaticLiteral("two") ) jcr.operator.equal.to ( OperandDynamicField(o.hello) OperandStaticLiteral("three") ) )',
118 118
             ],
119 119
             [
120 120
                 Comparison::NIN,
121
-                [ 'one' ],
121
+                ['one'],
122 122
                 'ConstraintNot ( ConstraintOrx ( jcr.operator.equal.to ( OperandDynamicField(o.hello) OperandStaticLiteral("one") ) ) )'
123 123
             ],
124 124
         ];
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $expr2 = new Comparison('number', Comparison::GT, 8);
134 134
         $expr = new CompositeExpression(
135 135
             $type,
136
-            [ $expr1, $expr2 ]
136
+            [$expr1, $expr2]
137 137
         );
138 138
 
139 139
         $this->visitor->dispatch($expr);
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
     public function provideComposite()
154 154
     {
155 155
         return [
156
-            [ CompositeExpression::TYPE_AND, 'ConstraintAndx' ],
157
-            [ CompositeExpression::TYPE_OR, 'ConstraintOrx' ]
156
+            [CompositeExpression::TYPE_AND, 'ConstraintAndx'],
157
+            [CompositeExpression::TYPE_OR, 'ConstraintOrx']
158 158
         ];
159 159
     }
160 160
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         $expr3 = new Comparison('date', Comparison::GT, '2015-12-10');
167 167
         $expr = new CompositeExpression(
168 168
             $type,
169
-            [ $expr1, $expr2, $expr3 ]
169
+            [$expr1, $expr2, $expr3]
170 170
         );
171 171
 
172 172
         $this->visitor->dispatch($expr);
@@ -197,12 +197,12 @@  discard block
 block discarded – undo
197 197
         $expr4 = new Comparison('date', Comparison::LT, '2016-12-10');
198 198
         $expr5 = new Comparison('date', Comparison::NEQ, '2016-12-10');
199 199
 
200
-        $comp2 = new CompositeExpression(CompositeExpression::TYPE_AND, [ $expr2, $expr5 ]);
201
-        $comp1 = new CompositeExpression(CompositeExpression::TYPE_OR, [ $expr1, $comp2 ]);
200
+        $comp2 = new CompositeExpression(CompositeExpression::TYPE_AND, [$expr2, $expr5]);
201
+        $comp1 = new CompositeExpression(CompositeExpression::TYPE_OR, [$expr1, $comp2]);
202 202
 
203 203
         $expr = new CompositeExpression(
204 204
             $type,
205
-            [ $comp1, $expr3, $expr4 ]
205
+            [$comp1, $expr3, $expr4]
206 206
         );
207 207
 
208 208
         $this->visitor->dispatch($expr);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         OperandDynamicField(o.number) OperandStaticLiteral("8") 
147 147
     ) 
148 148
 )
149
-EOT
149
+eot
150 150
         );
151 151
     }
152 152
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
         )
185 185
     ) 
186 186
 )
187
-EOT
187
+eot
188 188
         );
189 189
     }
190 190
 
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
         )
231 231
     ) 
232 232
 )
233
-EOT
233
+eot
234 234
         );
235 235
     }
236 236
 
Please login to merge, or discard this patch.
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.