Completed
Pull Request — master (#138)
by Kevin
05:28
created
lib/Cli/Command/UnsetElementValue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,11 +33,11 @@  discard block
 block discarded – undo
33 33
 
34 34
     protected function execute(InputInterface $input, OutputInterface $output)
35 35
     {
36
-        if (!file_exists($this->path . '/magium.json')) {
36
+        if (!file_exists($this->path.'/magium.json')) {
37 37
             throw new NotFoundException('Configuration file not found.  Please execute magium:init.');
38 38
         }
39 39
         $reader = new \Zend\Config\Reader\Json();
40
-        $config = new Config($reader->fromFile($this->path . '/magium.json'), true);
40
+        $config = new Config($reader->fromFile($this->path.'/magium.json'), true);
41 41
 
42 42
         $name = $input->getArgument('name');
43 43
         $value = $input->getArgument('value');
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $config->config->$name = $value;
53 53
 
54 54
         $writer = new Json();
55
-        $writer->toFile($this->path . '/magium.json', $config);
55
+        $writer->toFile($this->path.'/magium.json', $config);
56 56
         $output->writeln(sprintf('Wrote value for "%s" to %s/magium.json', $name, $this->path));
57 57
     }
58 58
 
Please login to merge, or discard this patch.
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/Actions/SetFormValue.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Facebook\WebDriver\WebDriverElement;
7 7
 use Facebook\WebDriver\WebDriverSelect;
8 8
 use Magium\NotFoundException;
9
-use Magium\WebDriver\FastSelectElement;
10 9
 use Magium\WebDriver\WebDriver;
11 10
 
12 11
 class SetFormValue
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     public function setById($id, $value)
31 31
     {
32
-        $this->set('id:' . $id, $value);
32
+        $this->set('id:'.$id, $value);
33 33
     }
34 34
 
35 35
     public function set($name, $value)
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         } else {
42 42
             $element = $this->webDriver->byXpath(sprintf('//label[.="%s"]', $name));
43 43
             if (!$element->getAttribute('for')) {
44
-                throw new NotFoundException('Unable to find the "for" attribute for a label with the text: ' . $name);
44
+                throw new NotFoundException('Unable to find the "for" attribute for a label with the text: '.$name);
45 45
             }
46 46
             $formElement = $this->webDriver->byId($element->getAttribute('for'));
47 47
         }
Please login to merge, or discard this patch.
lib/Util/Configuration/StandardConfigurationProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
31 31
 
32 32
     public function configureDi(Di $di)
33 33
     {
34
-        $di->instanceManager()->addSharedInstance($this->configurationReader,               get_class($this->configurationReader));
35
-        $di->instanceManager()->addSharedInstance($this->classConfigurationReader,          get_class($this->classConfigurationReader));
36
-        $di->instanceManager()->addSharedInstance($this->environmentConfigurationReader,    get_class($this->environmentConfigurationReader));
37
-        $di->instanceManager()->addSharedInstance($this,                                    get_class($this));
34
+        $di->instanceManager()->addSharedInstance($this->configurationReader, get_class($this->configurationReader));
35
+        $di->instanceManager()->addSharedInstance($this->classConfigurationReader, get_class($this->classConfigurationReader));
36
+        $di->instanceManager()->addSharedInstance($this->environmentConfigurationReader, get_class($this->environmentConfigurationReader));
37
+        $di->instanceManager()->addSharedInstance($this, get_class($this));
38 38
     }
39 39
 
40 40
     public function configureObject(ConfigurableObjectInterface $obj)
Please login to merge, or discard this patch.