Completed
Push — master ( d54afb...01173a )
by Kamil
26:45
created
src/Sylius/Behat/Context/Ui/Admin/ManagingProductAttributesContext.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
      */
152 152
     public function theTypeFieldShouldBeDisabled()
153 153
     {
154
-       $currentPage = $this->currentPageResolver->getCurrentPageWithForm([$this->createPage, $this->updatePage]);
154
+        $currentPage = $this->currentPageResolver->getCurrentPageWithForm([$this->createPage, $this->updatePage]);
155 155
 
156 156
         Assert::true(
157 157
             $currentPage->isTypeDisabled(),
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/ShowPageInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,5 +63,5 @@
 block discarded – undo
63 63
      *
64 64
      * @return bool
65 65
      */
66
-     public function isAttributeWithValueOnPage($attributeName, $AttributeValue);
66
+        public function isAttributeWithValueOnPage($attributeName, $AttributeValue);
67 67
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function isItemWithName($name)
124 124
     {
125
-       return $this->findItemWith($name, 'tbody  tr > td > div > a > strong');
125
+        return $this->findItemWith($name, 'tbody  tr > td > div > a > strong');
126 126
     }
127 127
 
128 128
     /**
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function isItemWithVariant($variantName)
132 132
     {
133
-       return $this->findItemWith($variantName, 'tbody  tr > td > strong');
133
+        return $this->findItemWith($variantName, 'tbody  tr > td > strong');
134 134
     }
135 135
 
136 136
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Shop/CartContext.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
         $this->summaryPage->open();
83 83
 
84 84
         Assert::true(
85
-             $this->summaryPage->isEmpty(),
85
+                $this->summaryPage->isEmpty(),
86 86
             'There should appear information about empty cart, but it does not.'
87 87
         );
88 88
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Form/Type/LegacyProductType.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.