Completed
Push — master ( 935192...fb459f )
by Kevin
08:45 queued 06:13
created
lib/Navigators/InstructionNavigator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                 case self::INSTRUCTION_MOUSE_CLICK:
73 73
                     $element = $this->webdriver->byXpath($xpath);
74 74
                     if (!$element->isDisplayed()) {
75
-                        throw new ElementNotVisibleException('The element is not visible: ' . $xpath);
75
+                        throw new ElementNotVisibleException('The element is not visible: '.$xpath);
76 76
                     }
77 77
                     $element->click();
78 78
                     break;
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                 case self::INSTRUCTION_WAIT_FOR_NOT_EXISTS:
87 87
                     $this->webdriver->wait()->until(
88 88
                         ExpectedCondition::not(
89
-                            ExpectedCondition::elementExists( $xpath, WebDriver::BY_XPATH)
89
+                            ExpectedCondition::elementExists($xpath, WebDriver::BY_XPATH)
90 90
                         )
91 91
                     );
92 92
                     break;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
                     );
106 106
                     break;
107 107
                 default:
108
-                    throw new InvalidConfigurationException('Unknown login instruction: ' .$instruction );
108
+                    throw new InvalidConfigurationException('Unknown login instruction: '.$instruction);
109 109
             }
110 110
         }
111 111
 
Please login to merge, or discard this patch.