@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~=" |
| 69 | 69 | * @param string $key Search key defined by the subscription manager, e.g. "subscription.status" |
| 70 | 70 | * @param array|string $value Value or list of values to compare to |
| 71 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
| 71 | + * @return Base Subscription controller for fluent interface |
|
| 72 | 72 | * @since 2019.04 |
| 73 | 73 | */ |
| 74 | 74 | public function compare( $operator, $key, $value ) |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | * Parses the given array and adds the conditions to the list of conditions |
| 96 | 96 | * |
| 97 | 97 | * @param array $conditions List of conditions, e.g. ['>' => ['subscription.interval' => 'P0Y1M0W0D']] |
| 98 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
| 98 | + * @return Base Subscription controller for fluent interface |
|
| 99 | 99 | * @since 2019.04 |
| 100 | 100 | */ |
| 101 | 101 | public function parse( array $conditions ) |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | * |
| 124 | 124 | * @param integer $start Start value of the first subscription item in the list |
| 125 | 125 | * @param integer $limit Number of returned subscription items |
| 126 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
| 126 | + * @return Base Subscription controller for fluent interface |
|
| 127 | 127 | * @since 2019.04 |
| 128 | 128 | */ |
| 129 | 129 | public function slice( $start, $limit ) |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | * Sets the sorting of the result list |
| 138 | 138 | * |
| 139 | 139 | * @param string|null $key Sorting key of the result list like "interval", null for no sorting |
| 140 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
| 140 | + * @return Base Subscription controller for fluent interface |
|
| 141 | 141 | * @since 2019.04 |
| 142 | 142 | */ |
| 143 | 143 | public function sort( $key = null ) |
@@ -30,12 +30,12 @@ discard block |
||
| 30 | 30 | * @param \Aimeos\Controller\Frontend\Iface $controller Controller object |
| 31 | 31 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
| 32 | 32 | */ |
| 33 | - public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context ) |
|
| 33 | + public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context) |
|
| 34 | 34 | { |
| 35 | 35 | $iface = \Aimeos\Controller\Frontend\Locale\Iface::class; |
| 36 | - $this->controller = \Aimeos\MW\Common\Base::checkClass( $iface, $controller ); |
|
| 36 | + $this->controller = \Aimeos\MW\Common\Base::checkClass($iface, $controller); |
|
| 37 | 37 | |
| 38 | - parent::__construct( $context ); |
|
| 38 | + parent::__construct($context); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | |
@@ -47,9 +47,9 @@ discard block |
||
| 47 | 47 | * @return mixed Returns the value of the called method |
| 48 | 48 | * @throws \Aimeos\Controller\Frontend\Exception If method call failed |
| 49 | 49 | */ |
| 50 | - public function __call( $name, array $param ) |
|
| 50 | + public function __call($name, array $param) |
|
| 51 | 51 | { |
| 52 | - return @call_user_func_array( array( $this->controller, $name ), $param ); |
|
| 52 | + return @call_user_func_array(array($this->controller, $name), $param); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | |
@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
| 72 | 72 | * @since 2019.04 |
| 73 | 73 | */ |
| 74 | - public function compare( $operator, $key, $value ) |
|
| 74 | + public function compare($operator, $key, $value) |
|
| 75 | 75 | { |
| 76 | - $this->controller->compare( $operator, $key, $value ); |
|
| 76 | + $this->controller->compare($operator, $key, $value); |
|
| 77 | 77 | return $this; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | * @return \Aimeos\MShop\Subscription\Item\Iface Subscription item including the referenced domains items |
| 86 | 86 | * @since 2019.04 |
| 87 | 87 | */ |
| 88 | - public function get( $id ) |
|
| 88 | + public function get($id) |
|
| 89 | 89 | { |
| 90 | - return $this->controller->get( $id ); |
|
| 90 | + return $this->controller->get($id); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
| 99 | 99 | * @since 2019.04 |
| 100 | 100 | */ |
| 101 | - public function parse( array $conditions ) |
|
| 101 | + public function parse(array $conditions) |
|
| 102 | 102 | { |
| 103 | - $this->controller->parse( $conditions ); |
|
| 103 | + $this->controller->parse($conditions); |
|
| 104 | 104 | return $this; |
| 105 | 105 | } |
| 106 | 106 | |
@@ -112,9 +112,9 @@ discard block |
||
| 112 | 112 | * @return \Aimeos\MShop\Subscription\Item\Iface[] Ordered list of subscription items |
| 113 | 113 | * @since 2019.04 |
| 114 | 114 | */ |
| 115 | - public function search( &$total = null ) |
|
| 115 | + public function search(&$total = null) |
|
| 116 | 116 | { |
| 117 | - return $this->controller->search( $total ); |
|
| 117 | + return $this->controller->search($total); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | |
@@ -126,9 +126,9 @@ discard block |
||
| 126 | 126 | * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
| 127 | 127 | * @since 2019.04 |
| 128 | 128 | */ |
| 129 | - public function slice( $start, $limit ) |
|
| 129 | + public function slice($start, $limit) |
|
| 130 | 130 | { |
| 131 | - $this->controller->slice( $start, $limit ); |
|
| 131 | + $this->controller->slice($start, $limit); |
|
| 132 | 132 | return $this; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -140,9 +140,9 @@ discard block |
||
| 140 | 140 | * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
| 141 | 141 | * @since 2019.04 |
| 142 | 142 | */ |
| 143 | - public function sort( $key = null ) |
|
| 143 | + public function sort($key = null) |
|
| 144 | 144 | { |
| 145 | - $this->controller->sort( $key ); |
|
| 145 | + $this->controller->sort($key); |
|
| 146 | 146 | return $this; |
| 147 | 147 | } |
| 148 | 148 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~=" |
| 59 | 59 | * @param string $key Search key defined by the locale manager, e.g. "locale.status" |
| 60 | - * @param array|string $value Value or list of values to compare to |
|
| 60 | + * @param integer $value Value or list of values to compare to |
|
| 61 | 61 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 62 | 62 | * @since 2019.04 |
| 63 | 63 | */ |
@@ -99,6 +99,7 @@ discard block |
||
| 99 | 99 | * Returns the locales filtered by the previously assigned conditions |
| 100 | 100 | * |
| 101 | 101 | * @param integer &$total Parameter where the total number of found locales will be stored in |
| 102 | + * @param integer $total |
|
| 102 | 103 | * @return \Aimeos\MShop\Locale\Item\Iface[] Ordered list of locale items |
| 103 | 104 | * @since 2019.04 |
| 104 | 105 | */ |
@@ -31,14 +31,14 @@ discard block |
||
| 31 | 31 | * |
| 32 | 32 | * @param \Aimeos\MShop\Context\Item\Iface $context Common MShop context object |
| 33 | 33 | */ |
| 34 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context ) |
|
| 34 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context) |
|
| 35 | 35 | { |
| 36 | - parent::__construct( $context ); |
|
| 36 | + parent::__construct($context); |
|
| 37 | 37 | |
| 38 | - $this->manager = \Aimeos\MShop::create( $context, 'locale' ); |
|
| 39 | - $this->filter = $this->manager->createSearch( true ); |
|
| 38 | + $this->manager = \Aimeos\MShop::create($context, 'locale'); |
|
| 39 | + $this->filter = $this->manager->createSearch(true); |
|
| 40 | 40 | |
| 41 | - $this->conditions[] = $this->filter->compare( '==', 'locale.siteid', $context->getLocale()->getSitePath() ); |
|
| 41 | + $this->conditions[] = $this->filter->compare('==', 'locale.siteid', $context->getLocale()->getSitePath()); |
|
| 42 | 42 | $this->conditions[] = $this->filter->getConditions(); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 62 | 62 | * @since 2019.04 |
| 63 | 63 | */ |
| 64 | - public function compare( $operator, $key, $value ) |
|
| 64 | + public function compare($operator, $key, $value) |
|
| 65 | 65 | { |
| 66 | - $this->conditions[] = $this->filter->compare( $operator, $key, $value ); |
|
| 66 | + $this->conditions[] = $this->filter->compare($operator, $key, $value); |
|
| 67 | 67 | return $this; |
| 68 | 68 | } |
| 69 | 69 | |
@@ -75,9 +75,9 @@ discard block |
||
| 75 | 75 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item including the referenced domains items |
| 76 | 76 | * @since 2019.04 |
| 77 | 77 | */ |
| 78 | - public function get( $id ) |
|
| 78 | + public function get($id) |
|
| 79 | 79 | { |
| 80 | - return $this->manager->getItem( $id, [], true ); |
|
| 80 | + return $this->manager->getItem($id, [], true); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | |
@@ -88,9 +88,9 @@ discard block |
||
| 88 | 88 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 89 | 89 | * @since 2019.04 |
| 90 | 90 | */ |
| 91 | - public function parse( array $conditions ) |
|
| 91 | + public function parse(array $conditions) |
|
| 92 | 92 | { |
| 93 | - $this->conditions[] = $this->filter->toConditions( $conditions ); |
|
| 93 | + $this->conditions[] = $this->filter->toConditions($conditions); |
|
| 94 | 94 | return $this; |
| 95 | 95 | } |
| 96 | 96 | |
@@ -102,10 +102,10 @@ discard block |
||
| 102 | 102 | * @return \Aimeos\MShop\Locale\Item\Iface[] Ordered list of locale items |
| 103 | 103 | * @since 2019.04 |
| 104 | 104 | */ |
| 105 | - public function search( &$total = null ) |
|
| 105 | + public function search(&$total = null) |
|
| 106 | 106 | { |
| 107 | - $this->filter->setConditions( $this->filter->combine( '&&', $this->conditions ) ); |
|
| 108 | - return $this->manager->searchItems( $this->filter, [], $total ); |
|
| 107 | + $this->filter->setConditions($this->filter->combine('&&', $this->conditions)); |
|
| 108 | + return $this->manager->searchItems($this->filter, [], $total); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | |
@@ -117,9 +117,9 @@ discard block |
||
| 117 | 117 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 118 | 118 | * @since 2019.04 |
| 119 | 119 | */ |
| 120 | - public function slice( $start, $limit ) |
|
| 120 | + public function slice($start, $limit) |
|
| 121 | 121 | { |
| 122 | - $this->filter->setSlice( $start, $limit ); |
|
| 122 | + $this->filter->setSlice($start, $limit); |
|
| 123 | 123 | return $this; |
| 124 | 124 | } |
| 125 | 125 | |
@@ -131,26 +131,26 @@ discard block |
||
| 131 | 131 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 132 | 132 | * @since 2019.04 |
| 133 | 133 | */ |
| 134 | - public function sort( $key = null ) |
|
| 134 | + public function sort($key = null) |
|
| 135 | 135 | { |
| 136 | 136 | $direction = '+'; |
| 137 | 137 | |
| 138 | - if( $key != null && $key[0] === '-' ) |
|
| 138 | + if ($key != null && $key[0] === '-') |
|
| 139 | 139 | { |
| 140 | - $key = substr( $key, 1 ); |
|
| 140 | + $key = substr($key, 1); |
|
| 141 | 141 | $direction = '-'; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - switch( $key ) |
|
| 144 | + switch ($key) |
|
| 145 | 145 | { |
| 146 | 146 | case null: |
| 147 | - $this->filter->setSortations( [] ); |
|
| 147 | + $this->filter->setSortations([]); |
|
| 148 | 148 | break; |
| 149 | 149 | case 'position': |
| 150 | - $this->filter->setSortations( [$this->filter->sort( $direction, 'locale.position' )] ); |
|
| 150 | + $this->filter->setSortations([$this->filter->sort($direction, 'locale.position')]); |
|
| 151 | 151 | break; |
| 152 | 152 | default: |
| 153 | - $this->filter->setSortations( [$this->filter->sort( $direction, $key )] ); |
|
| 153 | + $this->filter->setSortations([$this->filter->sort($direction, $key)]); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | return $this; |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 29 | 29 | * @since 2019.04 |
| 30 | 30 | */ |
| 31 | - public function compare( $operator, $key, $value ); |
|
| 31 | + public function compare($operator, $key, $value); |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * Returns the locale for the given locale ID |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * @return \Aimeos\MShop\Locale\Item\Iface Locale item including the referenced domains items |
| 38 | 38 | * @since 2019.04 |
| 39 | 39 | */ |
| 40 | - public function get( $id ); |
|
| 40 | + public function get($id); |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Parses the given array and adds the conditions to the list of conditions |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 47 | 47 | * @since 2019.04 |
| 48 | 48 | */ |
| 49 | - public function parse( array $conditions ); |
|
| 49 | + public function parse(array $conditions); |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * Returns the locales filtered by the previously assigned conditions |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * @return \Aimeos\MShop\Locale\Item\Iface[] Ordered list of locale items |
| 56 | 56 | * @since 2019.04 |
| 57 | 57 | */ |
| 58 | - public function search( &$total = null ); |
|
| 58 | + public function search(&$total = null); |
|
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Sets the start value and the number of returned locale items for slicing the list of found locale items |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 66 | 66 | * @since 2019.04 |
| 67 | 67 | */ |
| 68 | - public function slice( $start, $limit ); |
|
| 68 | + public function slice($start, $limit); |
|
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | 71 | * Sets the sorting of the result list |
@@ -74,5 +74,5 @@ discard block |
||
| 74 | 74 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
| 75 | 75 | * @since 2019.04 |
| 76 | 76 | */ |
| 77 | - public function sort( $key = null ); |
|
| 77 | + public function sort($key = null); |
|
| 78 | 78 | } |
@@ -18,19 +18,19 @@ discard block |
||
| 18 | 18 | protected function setUp() |
| 19 | 19 | { |
| 20 | 20 | $this->context = \TestHelperFrontend::getContext(); |
| 21 | - $this->object = new \Aimeos\Controller\Frontend\Locale\Standard( $this->context ); |
|
| 21 | + $this->object = new \Aimeos\Controller\Frontend\Locale\Standard($this->context); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | |
| 25 | 25 | protected function tearDown() |
| 26 | 26 | { |
| 27 | - unset( $this->object, $this->context ); |
|
| 27 | + unset($this->object, $this->context); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | |
| 31 | 31 | public function testCompare() |
| 32 | 32 | { |
| 33 | - $this->assertEquals( 1, count( $this->object->compare( '>', 'locale.status', 0 )->search() ) ); |
|
| 33 | + $this->assertEquals(1, count($this->object->compare('>', 'locale.status', 0)->search())); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | |
@@ -38,48 +38,48 @@ discard block |
||
| 38 | 38 | { |
| 39 | 39 | $expected = \Aimeos\MShop\Locale\Item\Iface::class; |
| 40 | 40 | |
| 41 | - $manager = \Aimeos\MShop::create( $this->context, 'locale' ); |
|
| 42 | - $items = $manager->searchItems( $manager->createSearch( true ) ); |
|
| 41 | + $manager = \Aimeos\MShop::create($this->context, 'locale'); |
|
| 42 | + $items = $manager->searchItems($manager->createSearch(true)); |
|
| 43 | 43 | |
| 44 | - $this->assertInstanceOf( $expected, $this->object->get( reset( $items )->getId() ) ); |
|
| 44 | + $this->assertInstanceOf($expected, $this->object->get(reset($items)->getId())); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | |
| 48 | 48 | public function testParse() |
| 49 | 49 | { |
| 50 | 50 | $cond = ['>' => ['locale.status' => 0]]; |
| 51 | - $this->assertEquals( 1, count( $this->object->parse( $cond )->search() ) ); |
|
| 51 | + $this->assertEquals(1, count($this->object->parse($cond)->search())); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | |
| 55 | 55 | public function testSearch() |
| 56 | 56 | { |
| 57 | 57 | $total = 0; |
| 58 | - $this->assertGreaterThanOrEqual( 1, count( $this->object->search( $total ) ) ); |
|
| 59 | - $this->assertGreaterThanOrEqual( 1, $total ); |
|
| 58 | + $this->assertGreaterThanOrEqual(1, count($this->object->search($total))); |
|
| 59 | + $this->assertGreaterThanOrEqual(1, $total); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | |
| 63 | 63 | public function testSlice() |
| 64 | 64 | { |
| 65 | - $this->assertEquals( 1, count( $this->object->slice( 0, 1 )->search() ) ); |
|
| 65 | + $this->assertEquals(1, count($this->object->slice(0, 1)->search())); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | |
| 69 | 69 | public function testSort() |
| 70 | 70 | { |
| 71 | - $this->assertEquals( 1, count( $this->object->sort()->search() ) ); |
|
| 71 | + $this->assertEquals(1, count($this->object->sort()->search())); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | |
| 75 | 75 | public function testSortPosition() |
| 76 | 76 | { |
| 77 | - $this->assertEquals( 1, count( $this->object->sort( 'position' )->search() ) ); |
|
| 77 | + $this->assertEquals(1, count($this->object->sort('position')->search())); |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | |
| 81 | 81 | public function testSortGeneric() |
| 82 | 82 | { |
| 83 | - $this->assertEquals( 1, count( $this->object->sort( 'locale.status' )->search() ) ); |
|
| 83 | + $this->assertEquals(1, count($this->object->sort('locale.status')->search())); |
|
| 84 | 84 | } |
| 85 | 85 | } |
@@ -20,48 +20,48 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | $this->context = \TestHelperFrontend::getContext(); |
| 22 | 22 | |
| 23 | - $this->stub = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Standard::class ) |
|
| 23 | + $this->stub = $this->getMockBuilder(\Aimeos\Controller\Frontend\Locale\Standard::class) |
|
| 24 | 24 | ->disableOriginalConstructor() |
| 25 | 25 | ->getMock(); |
| 26 | 26 | |
| 27 | - $this->object = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ) |
|
| 28 | - ->setConstructorArgs( [$this->stub, $this->context] ) |
|
| 27 | + $this->object = $this->getMockBuilder(\Aimeos\Controller\Frontend\Locale\Decorator\Base::class) |
|
| 28 | + ->setConstructorArgs([$this->stub, $this->context]) |
|
| 29 | 29 | ->getMockForAbstractClass(); |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | protected function tearDown() |
| 34 | 34 | { |
| 35 | - unset( $this->context, $this->object, $this->stub ); |
|
| 35 | + unset($this->context, $this->object, $this->stub); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | |
| 39 | 39 | public function testConstructException() |
| 40 | 40 | { |
| 41 | - $stub = $this->getMockBuilder( \Aimeos\Controller\Frontend\Iface::class )->getMock(); |
|
| 41 | + $stub = $this->getMockBuilder(\Aimeos\Controller\Frontend\Iface::class)->getMock(); |
|
| 42 | 42 | |
| 43 | - $this->setExpectedException( \Aimeos\MW\Common\Exception::class ); |
|
| 43 | + $this->setExpectedException(\Aimeos\MW\Common\Exception::class); |
|
| 44 | 44 | |
| 45 | - $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ) |
|
| 46 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
| 45 | + $this->getMockBuilder(\Aimeos\Controller\Frontend\Locale\Decorator\Base::class) |
|
| 46 | + ->setConstructorArgs([$stub, $this->context]) |
|
| 47 | 47 | ->getMockForAbstractClass(); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | public function testCall() |
| 52 | 52 | { |
| 53 | - $stub = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Standard::class ) |
|
| 53 | + $stub = $this->getMockBuilder(\Aimeos\Controller\Frontend\Locale\Standard::class) |
|
| 54 | 54 | ->disableOriginalConstructor() |
| 55 | - ->setMethods( ['invalid'] ) |
|
| 55 | + ->setMethods(['invalid']) |
|
| 56 | 56 | ->getMock(); |
| 57 | 57 | |
| 58 | - $object = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ) |
|
| 59 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
| 58 | + $object = $this->getMockBuilder(\Aimeos\Controller\Frontend\Locale\Decorator\Base::class) |
|
| 59 | + ->setConstructorArgs([$stub, $this->context]) |
|
| 60 | 60 | ->getMockForAbstractClass(); |
| 61 | 61 | |
| 62 | - $stub->expects( $this->once() )->method( 'invalid' )->will( $this->returnValue( true ) ); |
|
| 62 | + $stub->expects($this->once())->method('invalid')->will($this->returnValue(true)); |
|
| 63 | 63 | |
| 64 | - $this->assertTrue( $object->invalid() ); |
|
| 64 | + $this->assertTrue($object->invalid()); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | |
@@ -69,21 +69,21 @@ discard block |
||
| 69 | 69 | { |
| 70 | 70 | $expected = \Aimeos\Controller\Frontend\Locale\Iface::class; |
| 71 | 71 | |
| 72 | - $this->stub->expects( $this->once() )->method( 'compare' ) |
|
| 73 | - ->will( $this->returnValue( $this->stub ) ); |
|
| 72 | + $this->stub->expects($this->once())->method('compare') |
|
| 73 | + ->will($this->returnValue($this->stub)); |
|
| 74 | 74 | |
| 75 | - $this->assertInstanceOf( $expected, $this->object->compare( '==', 'locale.status', 1 ) ); |
|
| 75 | + $this->assertInstanceOf($expected, $this->object->compare('==', 'locale.status', 1)); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | |
| 79 | 79 | public function testGet() |
| 80 | 80 | { |
| 81 | - $item = \Aimeos\MShop::create( $this->context, 'locale' )->createItem(); |
|
| 81 | + $item = \Aimeos\MShop::create($this->context, 'locale')->createItem(); |
|
| 82 | 82 | |
| 83 | - $this->stub->expects( $this->once() )->method( 'get' ) |
|
| 84 | - ->will( $this->returnValue( $item ) ); |
|
| 83 | + $this->stub->expects($this->once())->method('get') |
|
| 84 | + ->will($this->returnValue($item)); |
|
| 85 | 85 | |
| 86 | - $this->assertInstanceOf( \Aimeos\MShop\Locale\Item\Iface::class, $this->object->get( -1 ) ); |
|
| 86 | + $this->assertInstanceOf(\Aimeos\MShop\Locale\Item\Iface::class, $this->object->get( -1 )); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | |
@@ -91,21 +91,21 @@ discard block |
||
| 91 | 91 | { |
| 92 | 92 | $expected = \Aimeos\Controller\Frontend\Locale\Iface::class; |
| 93 | 93 | |
| 94 | - $this->stub->expects( $this->once() )->method( 'parse' ) |
|
| 95 | - ->will( $this->returnValue( $this->stub ) ); |
|
| 94 | + $this->stub->expects($this->once())->method('parse') |
|
| 95 | + ->will($this->returnValue($this->stub)); |
|
| 96 | 96 | |
| 97 | - $this->assertInstanceOf( $expected, $this->object->parse( [] ) ); |
|
| 97 | + $this->assertInstanceOf($expected, $this->object->parse([])); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | |
| 101 | 101 | public function testSearch() |
| 102 | 102 | { |
| 103 | - $item = \Aimeos\MShop::create( $this->context, 'locale' )->createItem(); |
|
| 103 | + $item = \Aimeos\MShop::create($this->context, 'locale')->createItem(); |
|
| 104 | 104 | |
| 105 | - $this->stub->expects( $this->once() )->method( 'search' ) |
|
| 106 | - ->will( $this->returnValue( [$item] ) ); |
|
| 105 | + $this->stub->expects($this->once())->method('search') |
|
| 106 | + ->will($this->returnValue([$item])); |
|
| 107 | 107 | |
| 108 | - $this->assertEquals( [$item], $this->object->search() ); |
|
| 108 | + $this->assertEquals([$item], $this->object->search()); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | |
@@ -113,10 +113,10 @@ discard block |
||
| 113 | 113 | { |
| 114 | 114 | $expected = \Aimeos\Controller\Frontend\Locale\Iface::class; |
| 115 | 115 | |
| 116 | - $this->stub->expects( $this->once() )->method( 'slice' ) |
|
| 117 | - ->will( $this->returnValue( $this->stub ) ); |
|
| 116 | + $this->stub->expects($this->once())->method('slice') |
|
| 117 | + ->will($this->returnValue($this->stub)); |
|
| 118 | 118 | |
| 119 | - $this->assertInstanceOf( $expected, $this->object->slice( 0, 100 ) ); |
|
| 119 | + $this->assertInstanceOf($expected, $this->object->slice(0, 100)); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | |
@@ -124,26 +124,26 @@ discard block |
||
| 124 | 124 | { |
| 125 | 125 | $expected = \Aimeos\Controller\Frontend\Locale\Iface::class; |
| 126 | 126 | |
| 127 | - $this->stub->expects( $this->once() )->method( 'sort' ) |
|
| 128 | - ->will( $this->returnValue( $this->stub ) ); |
|
| 127 | + $this->stub->expects($this->once())->method('sort') |
|
| 128 | + ->will($this->returnValue($this->stub)); |
|
| 129 | 129 | |
| 130 | - $this->assertInstanceOf( $expected, $this->object->sort( 'position' ) ); |
|
| 130 | + $this->assertInstanceOf($expected, $this->object->sort('position')); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | |
| 134 | 134 | public function testGetController() |
| 135 | 135 | { |
| 136 | - $result = $this->access( 'getController' )->invokeArgs( $this->object, [] ); |
|
| 136 | + $result = $this->access('getController')->invokeArgs($this->object, []); |
|
| 137 | 137 | |
| 138 | - $this->assertSame( $this->stub, $result ); |
|
| 138 | + $this->assertSame($this->stub, $result); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | |
| 142 | - protected function access( $name ) |
|
| 142 | + protected function access($name) |
|
| 143 | 143 | { |
| 144 | - $class = new \ReflectionClass( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ); |
|
| 145 | - $method = $class->getMethod( $name ); |
|
| 146 | - $method->setAccessible( true ); |
|
| 144 | + $class = new \ReflectionClass(\Aimeos\Controller\Frontend\Locale\Decorator\Base::class); |
|
| 145 | + $method = $class->getMethod($name); |
|
| 146 | + $method->setAccessible(true); |
|
| 147 | 147 | |
| 148 | 148 | return $method; |
| 149 | 149 | } |