@@ -33,11 +33,11 @@ discard block |
||
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 |
||
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 |
@@ -180,12 +180,12 @@ |
||
180 | 180 | |
181 | 181 | $count = 0; |
182 | 182 | |
183 | - $path = realpath(__DIR__ . '/../'); |
|
183 | + $path = realpath(__DIR__.'/../'); |
|
184 | 184 | |
185 | 185 | while ($count++ < 5) { |
186 | 186 | $dir = "{$path}/configuration/"; |
187 | 187 | if (is_dir($dir)) { |
188 | - foreach (glob($dir . '*.php') as $file) { |
|
188 | + foreach (glob($dir.'*.php') as $file) { |
|
189 | 189 | $configArray = array_merge_recursive($configArray, include $file); |
190 | 190 | } |
191 | 191 | break; |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $this->logger->debug( |
35 | 35 | sprintf( |
36 | - 'Executing: ' . $command_name |
|
36 | + 'Executing: '.$command_name |
|
37 | 37 | ), |
38 | 38 | $extra |
39 | 39 | ); |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $payload = ['payload' => json_encode($payload)]; |
34 | 34 | } |
35 | 35 | |
36 | - $url = 'http://' . $this->apiConfiguration->getApiHostname() . $url; |
|
36 | + $url = 'http://'.$this->apiConfiguration->getApiHostname().$url; |
|
37 | 37 | |
38 | 38 | $factory = new Factory(); |
39 | 39 | $requestSigner = $factory->newRequestSigner(); |
@@ -26,12 +26,12 @@ |
||
26 | 26 | } |
27 | 27 | $count = 0; |
28 | 28 | while ($count++ < 10) { |
29 | - $filePath = $dir . '/' . $file; |
|
29 | + $filePath = $dir.'/'.$file; |
|
30 | 30 | if (file_exists($filePath)) { |
31 | 31 | $this->config = json_decode(file_get_contents($filePath), true); |
32 | 32 | break; |
33 | 33 | } |
34 | - $dir = realpath($dir . '/..'); |
|
34 | + $dir = realpath($dir.'/..'); |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 |
@@ -80,13 +80,13 @@ discard block |
||
80 | 80 | public function logAssertionSuccess(AbstractAssertion $assertion, array $extra) |
81 | 81 | { |
82 | 82 | $extra = array_merge($extra, ['type' => 'assertion', 'result' => self::STATUS_PASSED]); |
83 | - $this->info(get_class($assertion) . ' - passed', $this->createExtra($extra)); |
|
83 | + $this->info(get_class($assertion).' - passed', $this->createExtra($extra)); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | public function logAssertionFailure(Exception $e, AbstractAssertion $assertion, array $extra) |
87 | 87 | { |
88 | 88 | $extra = array_merge($extra, ['type' => 'assertion', 'result' => self::STATUS_FAILED, 'stack_trace' => $e->getTrace()]); |
89 | - $this->err(get_class($assertion) . ' - ' . $e->getMessage(), $this->createExtra($extra)); |
|
89 | + $this->err(get_class($assertion).' - '.$e->getMessage(), $this->createExtra($extra)); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | public function createExtra($includeArray = []) |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | { |
149 | 149 | if ($test instanceof \PHPUnit_Framework_TestCase) { |
150 | 150 | if (!$this->testName) { |
151 | - $this->setTestName(get_class($test) . '::' . $test->getName()); |
|
151 | + $this->setTestName(get_class($test).'::'.$test->getName()); |
|
152 | 152 | } |
153 | - $this->invokedTest = get_class($test) . '::' . $test->getName(); |
|
153 | + $this->invokedTest = get_class($test).'::'.$test->getName(); |
|
154 | 154 | $this->setTestStatus(self::STATUS_PASSED); |
155 | 155 | } |
156 | 156 |
@@ -11,6 +11,6 @@ |
||
11 | 11 | $encoded = base64_encode($rand); |
12 | 12 | $username = preg_replace('/\W/', '', $encoded); |
13 | 13 | |
14 | - return $username . '@' . $domain; |
|
14 | + return $username.'@'.$domain; |
|
15 | 15 | } |
16 | 16 | } |
17 | 17 | \ No newline at end of file |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | $html = $this->webDriver->byXpath('//body')->getAttribute('innerHTML'); |
110 | 110 | $doc = new \DOMDocument(); |
111 | 111 | libxml_use_internal_errors(true); |
112 | - $doc->loadHTML('<html><body>' . $html . '</body></html>'); |
|
112 | + $doc->loadHTML('<html><body>'.$html.'</body></html>'); |
|
113 | 113 | $xpath = new \DOMXPath($doc); |
114 | 114 | |
115 | 115 | $baseMatches = $this->getBaseMatches($xpath, $baseChild); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | } |
122 | 122 | |
123 | 123 | if (!count($finalMatches)) { |
124 | - throw new UnableToExtractMenuXpathException('Could not extract menu Xpaths for the category path: ' . $this->path); |
|
124 | + throw new UnableToExtractMenuXpathException('Could not extract menu Xpaths for the category path: '.$this->path); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | $this->baseXpath = $finalMatches[0]['baseNodePath']; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | { |
180 | 180 | $baseMatches = []; |
181 | 181 | foreach ($this->baseSearchOrder as $base) { |
182 | - $baseQuery = '//' . $base; |
|
182 | + $baseQuery = '//'.$base; |
|
183 | 183 | $nodeList = $xpath->query($baseQuery); |
184 | 184 | foreach ($nodeList as $index => $node) { |
185 | 185 | /* @var $node \DOMElement */ |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | if ($element->isDisplayed()) { |
191 | 191 | foreach ($this->childSearchOrder as $order) { |
192 | 192 | $childQueryXpath = sprintf($order, $baseChild); |
193 | - $childQuery = $path . '/descendant::' . $childQueryXpath; |
|
193 | + $childQuery = $path.'/descendant::'.$childQueryXpath; |
|
194 | 194 | $childNodeList = $xpath->query($childQuery); |
195 | 195 | if ($childNodeList instanceof \DOMNodeList) { |
196 | 196 | foreach ($childNodeList as $node) { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $xpath = sprintf('//a[concat(" ",normalize-space(.)," ") = " %s "]|//*[concat(" ",normalize-space(.)," ") = " %s "]/ancestor::a', $part, $part); |
53 | 53 | $elements = $this->webDriver->findElements(WebDriverBy::xpath($xpath)); |
54 | 54 | $action = false; |
55 | - $this->testCase->assertNotCount(0, $elements, 'Did not find 1 or more elements with the Xpath: ' . $xpath); |
|
55 | + $this->testCase->assertNotCount(0, $elements, 'Did not find 1 or more elements with the Xpath: '.$xpath); |
|
56 | 56 | foreach ($elements as $element) { |
57 | 57 | // Sometimes responsive templates have multiple nav menus. So we iterate over the results to find a visible element. |
58 | 58 | if (!$element->isDisplayed()) { |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $action = true; |
67 | 67 | break; // If either of these options work we don't need to iterate over the remain elements |
68 | 68 | } |
69 | - $this->testCase->assertTrue($action, 'No action was taken. Elements not visible? Xpath: ' . $xpath); |
|
69 | + $this->testCase->assertTrue($action, 'No action was taken. Elements not visible? Xpath: '.$xpath); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | // We will have already clicked it previously |