Completed
Push — travis-xenial ( 84a270...92e80e )
by Kamil
26:32 queued 04:30
created
src/Sylius/Behat/Service/AutocompleteHelper.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,8 @@
 block discarded – undo
13 13
 
14 14
 namespace Sylius\Behat\Service;
15 15
 
16
-use Behat\Mink\Driver\Selenium2Driver;
17 16
 use Behat\Mink\Element\NodeElement;
18 17
 use Behat\Mink\Session;
19
-use Webmozart\Assert\Assert;
20 18
 
21 19
 abstract class AutocompleteHelper
22 20
 {
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SlugGenerationHelper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Behat\Mink\Element\NodeElement;
18 18
 use Behat\Mink\Session;
19 19
 use DMore\ChromeDriver\ChromeDriver;
20
-use Webmozart\Assert\Assert;
21 20
 
22 21
 abstract class SlugGenerationHelper
23 22
 {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingMethod/CreatePage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
     public function checkChannel($channelName): void
60 60
     {
61
-        if ($this->getDriver() instanceof Selenium2Driver  || $this->getDriver() instanceof ChromeDriver) {
61
+        if ($this->getDriver() instanceof Selenium2Driver || $this->getDriver() instanceof ChromeDriver) {
62 62
             $this->getElement('channel', ['%channel%' => $channelName])->click();
63 63
 
64 64
             return;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/ShowPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
     public function isOriginalPriceVisible(): bool
139 139
     {
140 140
         try {
141
-            return null !== $this->getElement('product_original_price')->find('css','del');
141
+            return null !== $this->getElement('product_original_price')->find('css', 'del');
142 142
         } catch (ElementNotFoundException $elementNotFoundException) {
143 143
             return false;
144 144
         }
Please login to merge, or discard this patch.