Completed
Branch master (a7a328)
by Kevin
04:49 queued 02:08
created
lib/AbstractTestCase.php 2 patches
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -279,7 +279,6 @@
 block discarded – undo
279 279
     }
280 280
 
281 281
     /**
282
-
283 282
      * @param string $theme
284 283
      * @return \Magium\Themes\ThemeConfigurationInterface
285 284
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
         }
235 235
     }
236 236
 
237
-    public static function resolveClass( $class, $prefix = null)
237
+    public static function resolveClass($class, $prefix = null)
238 238
     {
239 239
         $origClass = $class;
240 240
         if ($prefix !== null) {
Please login to merge, or discard this patch.
lib/Navigators/InstructionNavigator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
                     $this->webdriver->getMouse()->mouseMove($element->getCoordinates());
67 67
                     break;
68 68
                 default:
69
-                    throw new InvalidConfigurationException('Unknown login instruction: ' .$instruction );
69
+                    throw new InvalidConfigurationException('Unknown login instruction: ' . $instruction);
70 70
                     break;
71 71
             }
72 72
         }
Please login to merge, or discard this patch.
lib/Assertions/Element/NotClickable.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Magium\Assertions\Element;
4 4
 
5 5
 use Facebook\WebDriver\WebDriverBy;
6
-use Magium\AbstractTestCase;
7
-use Magium\InvalidTestTypeException;
8 6
 use Magium\WebDriver\ExpectedCondition;
9 7
 
10 8
 class NotClickable extends AbstractSelectorAssertion
Please login to merge, or discard this patch.
lib/Assertions/Element/Clickable.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Magium\Assertions\Element;
4 4
 
5 5
 use Facebook\WebDriver\WebDriverBy;
6
-use Magium\AbstractTestCase;
7
-use Magium\InvalidTestTypeException;
8 6
 use Magium\WebDriver\ExpectedCondition;
9 7
 
10 8
 class NotClickable extends AbstractSelectorAssertion
Please login to merge, or discard this patch.