@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | public function parse() |
39 | 39 | { |
40 | - return Yaml::parse($this->getFixturesLocation() . $this->_filename); |
|
40 | + return Yaml::parse($this->getFixturesLocation().$this->_filename); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -21,7 +21,7 @@ |
||
21 | 21 | public static function instance($fixtureType, array $instanceData, $hook) |
22 | 22 | { |
23 | 23 | $mageModel = Mage::getModel($instanceData['fixture']['model']); |
24 | - $class = new \ReflectionClass(static::BUILDER_NAMESPACE_PREFIX . $fixtureType); |
|
24 | + $class = new \ReflectionClass(static::BUILDER_NAMESPACE_PREFIX.$fixtureType); |
|
25 | 25 | $fixture = $class->newInstanceArgs([$instanceData, $mageModel, $hook]); |
26 | 26 | |
27 | 27 | return $fixture; |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public static function isEnabled($carrier) |
80 | 80 | { |
81 | - return Mage::getStoreConfig('carriers/' . $carrier . '/active'); |
|
81 | + return Mage::getStoreConfig('carriers/'.$carrier.'/active'); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $carriers = Mage::getSingleton('shipping/config')->getActiveCarriers(); |
91 | 91 | |
92 | 92 | if (array_key_exists($carrier, $carriers)) { |
93 | - Mage::app()->getStore()->setConfig('carriers/' . $carrier . '/active', $enable); |
|
93 | + Mage::app()->getStore()->setConfig('carriers/'.$carrier.'/active', $enable); |
|
94 | 94 | } |
95 | 95 | } |
96 | 96 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | { |
24 | 24 | if (!@file_exists($gallery['image'])) { |
25 | 25 | throw new ProductMediaGalleryImageNotFound( |
26 | - 'Specified product fixture gallery image does not exists -> ' . $gallery['image'] |
|
26 | + 'Specified product fixture gallery image does not exists -> '.$gallery['image'] |
|
27 | 27 | ); |
28 | 28 | } |
29 | 29 |
@@ -55,7 +55,7 @@ |
||
55 | 55 | protected function _throwMethodNotFoundExceptionForProvider(Provider $provider, $method) |
56 | 56 | { |
57 | 57 | throw new ProviderMethodNotFound( |
58 | - "Given provider does not have the method " . $method . ' -> ' . get_class($provider) |
|
58 | + "Given provider does not have the method ".$method.' -> '.get_class($provider) |
|
59 | 59 | ); |
60 | 60 | } |
61 | 61 |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function spinUntilVisible($element, $wait = 60) |
45 | 45 | { |
46 | - $this->spin(function ($context) use ($element) { |
|
46 | + $this->spin(function($context) use ($element) { |
|
47 | 47 | return $context->getElement($element)->isVisible(); |
48 | 48 | }, $wait); |
49 | 49 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function spinUntilInvisible($element, $wait = 60) |
58 | 58 | { |
59 | - $this->spin(function ($context) use ($element) { |
|
59 | + $this->spin(function($context) use ($element) { |
|
60 | 60 | return ($context->getElement($element)->isVisible() == false); |
61 | 61 | }, $wait); |
62 | 62 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function spinAndClick($element, $wait = 60) |
71 | 71 | { |
72 | - $this->spin(function ($context) use ($element) { |
|
72 | + $this->spin(function($context) use ($element) { |
|
73 | 73 | $context->getElement($element)->click(); |
74 | 74 | return true; |
75 | 75 | }, $wait); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function spinAndPress($element, $wait = 60) |
85 | 85 | { |
86 | - $this->spin(function ($context) use ($element) { |
|
86 | + $this->spin(function($context) use ($element) { |
|
87 | 87 | $context->getElement($element)->press(); |
88 | 88 | return true; |
89 | 89 | }, $wait); |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | $backtrace = debug_backtrace(); |
98 | 98 | |
99 | 99 | throw new \Exception( |
100 | - "Timeout thrown by " . $backtrace[1]['class'] . "::" . $backtrace[1]['function'] . "()\n" . |
|
101 | - $backtrace[1]['file'] . ", line " . $backtrace[1]['line'] |
|
100 | + "Timeout thrown by ".$backtrace[1]['class']."::".$backtrace[1]['function']."()\n". |
|
101 | + $backtrace[1]['file'].", line ".$backtrace[1]['line'] |
|
102 | 102 | ); |
103 | 103 | } |
104 | 104 | } |
@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | trait Spinner |
14 | 14 | { |
15 | 15 | /** |
16 | - * @param $lambda |
|
16 | + * @param \Closure $lambda |
|
17 | 17 | * @param int $wait |
18 | - * @return bool |
|
18 | + * @return boolean|null |
|
19 | 19 | * @throws \Exception |
20 | 20 | */ |
21 | 21 | public function spin($lambda, $wait = 60) |
@@ -103,8 +103,8 @@ discard block |
||
103 | 103 | /** |
104 | 104 | * @param $context |
105 | 105 | * @param $element |
106 | - * @param $action |
|
107 | - * @param null $condition |
|
106 | + * @param string $action |
|
107 | + * @param boolean $condition |
|
108 | 108 | * @return bool |
109 | 109 | */ |
110 | 110 | private function _spinnerAction($context, $element, $action, $condition = null) |
@@ -120,7 +120,7 @@ |
||
120 | 120 | protected static function _registerFixture($type, $fixtureId, $hook) |
121 | 121 | { |
122 | 122 | self::_throwNullFixtureIdException($fixtureId); |
123 | - self::register($type . "_{$hook}_" . $fixtureId, $fixtureId); |
|
123 | + self::register($type."_{$hook}_".$fixtureId, $fixtureId); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |