Completed
Branch master (1e878c)
by Kevin
02:46
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/WebDriver/WebDriverElementProxy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function __call($name, $arguments)
28 28
     {
29 29
         if (strpos($name, '::') > 0) {
30
-            list(   , $name) = explode('::', $name);
30
+            list(, $name) = explode('::', $name);
31 31
         }
32 32
         if (!$this->element instanceof WebDriverElement) {
33 33
             $this->element = $this->webDriver->{$this->by}($this->selector);
Please login to merge, or discard this patch.