Completed
Pull Request — master (#121)
by Kevin
03:39
created
lib/Assertions/Browser/AssetIsCached.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,12 +28,12 @@
 block discarded – undo
28 28
 
29 29
         foreach ($assets as $asset) {
30 30
             if (strpos($asset['name'], $this->url) !== false) {
31
-                $this->testCase->assertEquals(0, $asset['duration'], 'Asset was not cached: ' . $asset['name']);
31
+                $this->testCase->assertEquals(0, $asset['duration'], 'Asset was not cached: '.$asset['name']);
32 32
                 $foundAsset = true;
33 33
             }
34 34
         }
35 35
 
36
-        $this->testCase->assertTrue($foundAsset, 'Unable to find asset: ' . $this->url);
36
+        $this->testCase->assertTrue($foundAsset, 'Unable to find asset: '.$this->url);
37 37
     }
38 38
 
39 39
 }
40 40
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Assertions/Browser/LogEmpty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     {
14 14
         $log = $this->webDriver->manage()->getLog('browser');
15 15
         foreach ($log as $l) {
16
-            $this->logger->err('Message found: ' . serialize($l));
16
+            $this->logger->err('Message found: '.serialize($l));
17 17
         }
18 18
         $this->testCase->assertCount(0, $log);
19 19
     }
Please login to merge, or discard this patch.
lib/Util/Configuration/ClassConfigurationReader.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
             $isVendor = array_pop($testParts) == 'vendor';
45 45
 
46 46
             if ($isVendor) {
47
-                $path = realpath(__DIR__ . '/../../../../..'); // Get out of the Magium directories
47
+                $path = realpath(__DIR__.'/../../../../..'); // Get out of the Magium directories
48 48
             } else {
49
-                $path = realpath(__DIR__ . '/../../..');
49
+                $path = realpath(__DIR__.'/../../..');
50 50
             }
51 51
 
52 52
             $count = 0;
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
 
74 74
         if (!is_dir($configurationDir)) return;
75 75
 
76
-        $configurationFile = get_class($config) . '.php';
77
-        $configurationFile = $configurationDir . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $configurationFile);
76
+        $configurationFile = get_class($config).'.php';
77
+        $configurationFile = $configurationDir.DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $configurationFile);
78 78
 
79 79
         if (file_exists($configurationFile)) {
80 80
             include $configurationFile;
Please login to merge, or discard this patch.