Completed
Push — master ( 2c8981...1ecbe4 )
by Kamil
23:19
created
ArchetypeBundle/spec/Form/EventListener/ParentArchetypeListenerSpec.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     {
48 48
         $event->getData()->willReturn('badObject');
49 49
         $this->shouldThrow(new UnexpectedTypeException('badObject', ArchetypeInterface::class))
50
-             ->during('preSetData', [$event])
50
+                ->during('preSetData', [$event])
51 51
         ;
52 52
     }
53 53
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ContentBundle/Form/Type/MenuType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
                 'label' => false,
49 49
                 'button_add_label' => 'sylius.form.menu.add_menu_node',
50 50
                 'cascade_validation' => true,
51
-             ])
51
+                ])
52 52
             ->add('uri', null, [
53 53
                 'required' => false,
54 54
                 'label' => 'sylius.form.menu.uri',
Please login to merge, or discard this patch.
src/Sylius/Bundle/ContentBundle/Form/Type/StaticContentType.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
                 'by_reference' => false,
54 54
                 'label' => 'sylius.form.static_content.routes',
55 55
                 'cascade_validation' => true,
56
-             ])
56
+                ])
57 57
             ->add('menuNodes', 'collection', [
58 58
                 'type' => 'sylius_menu_node',
59 59
                 'allow_add' => true,
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
                 'by_reference' => false,
62 62
                 'label' => 'sylius.form.static_content.menu_nodes',
63 63
                 'cascade_validation' => true,
64
-             ])
64
+                ])
65 65
             ->add('body', 'textarea', [
66 66
                 'required' => false,
67 67
                 'label' => 'sylius.form.static_content.body',
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Form/Type/Shipping/ShippingMethodChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     public function configureOptions(OptionsResolver $resolver)
56 56
     {
57
-        $choiceList = function (Options $options) {
57
+        $choiceList = function(Options $options) {
58 58
             if (null === $options['enabled']) {
59 59
                 $choices = $this->localeRepository->findAll();
60 60
             } else {
Please login to merge, or discard this patch.
src/Sylius/Bundle/FlowBundle/spec/Validator/ProcessValidatorSpec.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
     function let()
22 22
     {
23
-        $this->beConstructedWith('message', 'step_name', function () {});
23
+        $this->beConstructedWith('message', 'step_name', function() {});
24 24
     }
25 25
 
26 26
     function it_is_initializable()
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     function its_validation_is_mutable()
49 49
     {
50
-        $closure = function () {};
50
+        $closure = function() {};
51 51
 
52 52
         $this->setValidation($closure)->shouldReturn($this);
53 53
         $this->getValidation()->shouldReturn($closure);
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     function it_calls_validation_closure(ProcessContextInterface $processContext)
57 57
     {
58
-        $this->setValidation(function () {
58
+        $this->setValidation(function() {
59 59
             return true;
60 60
         });
61 61
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/RbacBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -170,10 +170,10 @@  discard block
 block discarded – undo
170 170
                 ->arrayNode('roles_hierarchy')
171 171
                     ->useAttributeAsKey('id')
172 172
                     ->prototype('array')
173
-                        ->beforeNormalization()->ifString()->then(function ($v) { return ['value' => $v]; })->end()
173
+                        ->beforeNormalization()->ifString()->then(function($v) { return ['value' => $v]; })->end()
174 174
                         ->beforeNormalization()
175
-                            ->ifTrue(function ($v) { return is_array($v) && isset($v['value']); })
176
-                            ->then(function ($v) { return preg_split('/\s*,\s*/', $v['value']); })
175
+                            ->ifTrue(function($v) { return is_array($v) && isset($v['value']); })
176
+                            ->then(function($v) { return preg_split('/\s*,\s*/', $v['value']); })
177 177
                         ->end()
178 178
                         ->prototype('scalar')->end()
179 179
                     ->end()
@@ -198,10 +198,10 @@  discard block
 block discarded – undo
198 198
                     ->useAttributeAsKey('id')
199 199
                     ->prototype('array')
200 200
                         ->performNoDeepMerging()
201
-                        ->beforeNormalization()->ifString()->then(function ($v) { return ['value' => $v]; })->end()
201
+                        ->beforeNormalization()->ifString()->then(function($v) { return ['value' => $v]; })->end()
202 202
                         ->beforeNormalization()
203
-                            ->ifTrue(function ($v) { return is_array($v) && isset($v['value']); })
204
-                            ->then(function ($v) { return preg_split('/\s*,\s*/', $v['value']); })
203
+                            ->ifTrue(function($v) { return is_array($v) && isset($v['value']); })
204
+                            ->then(function($v) { return preg_split('/\s*,\s*/', $v['value']); })
205 205
                         ->end()
206 206
                         ->prototype('scalar')->end()
207 207
                     ->end()
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/Command/CreateUserCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
             $email = $this->getHelper('dialog')->askAndValidate(
89 89
                 $output,
90 90
                 'Please enter an email:',
91
-                function ($username) {
91
+                function($username) {
92 92
                     if (empty($username)) {
93 93
                         throw new \Exception('Email can not be empty');
94 94
                     }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             $password = $this->getHelper('dialog')->askHiddenResponseAndValidate(
105 105
                 $output,
106 106
                 'Please choose a password:',
107
-                function ($password) {
107
+                function($password) {
108 108
                     if (empty($password)) {
109 109
                         throw new \Exception('Password can not be empty');
110 110
                     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/WebBundle/Behat/WebContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      */
62 62
     protected function waitForTabToActivate($tabContainer)
63 63
     {
64
-        $this->waitFor(function () use ($tabContainer) {
64
+        $this->waitFor(function() use ($tabContainer) {
65 65
             return false !== strpos($tabContainer->getAttribute('class'), 'active');
66 66
         });
67 67
     }
Please login to merge, or discard this patch.
src/Sylius/Component/Pricing/spec/Calculator/VolumeBasedCalculatorSpec.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     function it_assumes_quantity_is_1_if_not_provided_in_context(PriceableInterface $priceable)
35 35
     {
36 36
         $configuration = [
37
-            ['min' => 0,  'max' => 9,  'price' => 1699],
37
+            ['min' => 0, 'max' => 9, 'price' => 1699],
38 38
             ['min' => 10, 'max' => 19, 'price' => 1499],
39 39
             ['min' => 20, 'max' => 29, 'price' => 1299],
40 40
         ];
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     function it_returns_the_price_based_on_the_quantity(PriceableInterface $priceable)
46 46
     {
47 47
         $configuration = [
48
-            ['min' => 0,  'max' => 9,  'price' => 1699],
48
+            ['min' => 0, 'max' => 9, 'price' => 1699],
49 49
             ['min' => 10, 'max' => 19, 'price' => 1499],
50 50
             ['min' => 20, 'max' => 29, 'price' => 1299],
51 51
         ];
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
     function it_returns_the_correct_price_for_highest_quantity_range(PriceableInterface $priceable)
58 58
     {
59 59
         $configuration = [
60
-            ['min' => 0,  'max' => 9,    'price' => 1699],
61
-            ['min' => 10, 'max' => 19,   'price' => 1499],
62
-            ['min' => 20, 'max' => 29,   'price' => 1299],
60
+            ['min' => 0, 'max' => 9, 'price' => 1699],
61
+            ['min' => 10, 'max' => 19, 'price' => 1499],
62
+            ['min' => 20, 'max' => 29, 'price' => 1299],
63 63
             ['min' => 30, 'max' => null, 'price' => 1099],
64 64
         ];
65 65
 
Please login to merge, or discard this patch.