@@ -1,3 +1,3 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -$this->baseUrl = 'http://magento19.loc//'; |
|
4 | 3 | \ No newline at end of file |
4 | +$this->baseUrl = 'http://magento19.loc//'; |
|
5 | 5 | \ No newline at end of file |
@@ -2,4 +2,4 @@ |
||
2 | 2 | |
3 | 3 | namespace Magium\Extractors\Navigation; |
4 | 4 | |
5 | -class UnableToExtractMenuXpathException extends \Exception{} |
|
6 | 5 | \ No newline at end of file |
6 | +class UnableToExtractMenuXpathException extends \Exception {} |
|
7 | 7 | \ No newline at end of file |
@@ -2,4 +2,4 @@ |
||
2 | 2 | |
3 | 3 | namespace Magium\Extractors\Navigation; |
4 | 4 | |
5 | -class MissingNavigationSchemeException extends \Exception{} |
|
6 | 5 | \ No newline at end of file |
6 | +class MissingNavigationSchemeException extends \Exception {} |
|
7 | 7 | \ No newline at end of file |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | return true; |
114 | 114 | } |
115 | 115 | $parse = date_parse($part); |
116 | - if ($parse && $parse['day'] !== false && $parse['error_count'] == 0 ) { |
|
116 | + if ($parse && $parse['day'] !== false && $parse['error_count'] == 0) { |
|
117 | 117 | return true; |
118 | 118 | } else if (preg_match('/^\d{1,2}[\/\\-]\d{1,2}[\/\\-]\d{1,2}$/', $part)) { |
119 | 119 | return true; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | return true; |
128 | 128 | } |
129 | 129 | $parse = date_parse($part); |
130 | - if ($parse && $parse['month'] !== false && $parse['error_count'] == 0 ) { |
|
130 | + if ($parse && $parse['month'] !== false && $parse['error_count'] == 0) { |
|
131 | 131 | return true; |
132 | 132 | } else if (preg_match('/^\d{1,2}[\/\\-]\d{1,2}[\/\\-]\d{1,2}$/', $part)) { |
133 | 133 | return true; |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | if ($parse && $parse['year'] !== false && $parse['error_count'] == 0) { |
142 | 142 | return true; |
143 | 143 | // DateTime parses 2015 as 20:15:00, so this is to account for the unique condition. |
144 | - } else if (strlen($part) ==4 ) { |
|
144 | + } else if (strlen($part) == 4) { |
|
145 | 145 | if ($parse['second'] === 0 && $parse['hour'] == substr($part, 0, 2) && $parse['minute'] == substr($part, 2, 2)) { |
146 | 146 | return true; |
147 | 147 | } |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | return false; |
163 | 163 | } |
164 | 164 | $parse = date_parse($part); |
165 | - if ($parse && $parse['hour'] !== false && $parse['error_count'] == 0 ) { |
|
165 | + if ($parse && $parse['hour'] !== false && $parse['error_count'] == 0) { |
|
166 | 166 | return true; |
167 | 167 | } |
168 | 168 | return false; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | return false; |
180 | 180 | } |
181 | 181 | $parse = date_parse($part); |
182 | - if ($parse && $parse['minute'] !== false && $parse['error_count'] == 0 ) { |
|
182 | + if ($parse && $parse['minute'] !== false && $parse['error_count'] == 0) { |
|
183 | 183 | return true; |
184 | 184 | |
185 | 185 | } |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | return false; |
198 | 198 | } |
199 | 199 | $parse = date_parse($part); |
200 | - if ($parse && $parse['second'] !== false && $parse['error_count'] == 0 ) { |
|
200 | + if ($parse && $parse['second'] !== false && $parse['error_count'] == 0) { |
|
201 | 201 | return true; |
202 | 202 | } |
203 | 203 | return false; |
@@ -31,10 +31,10 @@ discard block |
||
31 | 31 | $this->name = trim(array_pop($rows)); |
32 | 32 | while (count($rows) > 0) { |
33 | 33 | $row = array_shift($rows); |
34 | - if (strpos($row, 'T: ') ===0) { |
|
34 | + if (strpos($row, 'T: ') === 0) { |
|
35 | 35 | $this->phone = trim(substr($row, 3)); |
36 | 36 | continue; |
37 | - } else if (strpos($row, 'F: ') ===0) { |
|
37 | + } else if (strpos($row, 'F: ') === 0) { |
|
38 | 38 | $this->fax = trim(substr($row, 3)); |
39 | 39 | continue; |
40 | 40 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $this->street1 = trim(array_shift($rows)); |
60 | 60 | $this->business = trim(array_shift($rows)); |
61 | 61 | //Easy |
62 | - }else if (count($rows) == 1) { |
|
62 | + } else if (count($rows) == 1) { |
|
63 | 63 | $this->street1 = trim(array_shift($rows)); |
64 | 64 | |
65 | 65 | // Not so easy |
@@ -70,8 +70,8 @@ discard block |
||
70 | 70 | $this->street1 = $stOrBus; |
71 | 71 | $this->business = trim(array_shift($rows)); |
72 | 72 | } else { |
73 | - $this->street1 =trim(array_shift($rows)); |
|
74 | - $this->street2 = $stOrBus; |
|
73 | + $this->street1 = trim(array_shift($rows)); |
|
74 | + $this->street2 = $stOrBus; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | } |
@@ -31,7 +31,7 @@ |
||
31 | 31 | } |
32 | 32 | try { |
33 | 33 | $assertion->assert(); |
34 | - $this->logger->logAssertionSuccess( $assertion, $extra ); |
|
34 | + $this->logger->logAssertionSuccess($assertion, $extra); |
|
35 | 35 | } catch (\Exception $e) { |
36 | 36 | $this->logger->logAssertionFailure($assertion, $extra); |
37 | 37 | throw $e; |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | public static function elementExists($selector, $by = 'byId') |
12 | 12 | { |
13 | 13 | return new WebDriverExpectedCondition( |
14 | - function ($driver) use ($selector, $by) { |
|
14 | + function($driver) use ($selector, $by) { |
|
15 | 15 | try { |
16 | 16 | $element = $driver->$by($selector); |
17 | 17 | return $element instanceof WebDriverElement; |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | public static function elementRemoved(WebDriverElement $element) |
27 | 27 | { |
28 | 28 | return new WebDriverExpectedCondition( |
29 | - function () use ($element) { |
|
29 | + function() use ($element) { |
|
30 | 30 | try { |
31 | 31 | $element->isDisplayed(); |
32 | 32 | return false; |
@@ -98,7 +98,7 @@ |
||
98 | 98 | |
99 | 99 | sort($paths); |
100 | 100 | $filter = $input->getArgument('filter'); |
101 | - if (count($paths) > 0 ) { |
|
101 | + if (count($paths) > 0) { |
|
102 | 102 | $output->writeln('Classes found: '); |
103 | 103 | $escape = $input->getOption('escape'); |
104 | 104 |
@@ -234,7 +234,7 @@ |
||
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) { |