Completed
Push — master ( 52cd2c...047880 )
by Kamil
47:26 queued 26:32
created
src/Sylius/Behat/Page/Shop/Product/ShowPage.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
     public function hasAssociation(string $productAssociationName): bool
141 141
     {
142
-        try{
142
+        try {
143 143
             $this->getElement('association', ['%associationName%' => $productAssociationName]);
144 144
         } catch (ElementNotFoundException $e) {
145 145
             return false;
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
     public function hasReviewTitled(string $title): bool
172 172
     {
173
-        try{
173
+        try {
174 174
             $element = $this->getElement('reviews_comment', ['%title%' => $title]);
175 175
         } catch (ElementNotFoundException $e) {
176 176
             return false;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/IndexPage.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     public function isProductOnList(string $productName): bool
66 66
     {
67
-        try{
67
+        try {
68 68
             $this->getElement('product_name', ['%productName%' => $productName]);
69 69
         } catch (ElementNotFoundException $e) {
70 70
             return false;
Please login to merge, or discard this patch.