@@ -20,134 +20,134 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->context = \TestHelperFrontend::getContext(); |
| 22 | 22 | |
| 23 | - $this->stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Standard' ) |
|
| 23 | + $this->stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Standard') |
|
| 24 | 24 | ->disableOriginalConstructor() |
| 25 | 25 | ->getMock(); |
| 26 | 26 | |
| 27 | - $this->object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ) |
|
| 28 | - ->setConstructorArgs( [$this->stub, $this->context] ) |
|
| 27 | + $this->object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Decorator\Base') |
|
| 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' )->getMock(); |
|
| 41 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Iface')->getMock(); |
|
| 42 | 42 | |
| 43 | - $this->setExpectedException( '\Aimeos\Controller\Frontend\Exception' ); |
|
| 43 | + $this->setExpectedException('\Aimeos\Controller\Frontend\Exception'); |
|
| 44 | 44 | |
| 45 | - $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ) |
|
| 46 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
| 45 | + $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Decorator\Base') |
|
| 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\Order\Standard' ) |
|
| 53 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Standard') |
|
| 54 | 54 | ->disableOriginalConstructor() |
| 55 | - ->setMethods( ['invalid'] ) |
|
| 55 | + ->setMethods(['invalid']) |
|
| 56 | 56 | ->getMock(); |
| 57 | 57 | |
| 58 | - $object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ) |
|
| 59 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
| 58 | + $object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Decorator\Base') |
|
| 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 | |
| 68 | 68 | public function testAddItem() |
| 69 | 69 | { |
| 70 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 70 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 71 | 71 | |
| 72 | - $this->stub->expects( $this->once() )->method( 'addItem' )->will( $this->returnValue( $item ) ); |
|
| 72 | + $this->stub->expects($this->once())->method('addItem')->will($this->returnValue($item)); |
|
| 73 | 73 | |
| 74 | - $this->assertInstanceOf( '\Aimeos\MShop\Order\Item\Iface', $this->object->addItem( -1, '' ) ); |
|
| 74 | + $this->assertInstanceOf('\Aimeos\MShop\Order\Item\Iface', $this->object->addItem( -1, '' )); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | |
| 78 | 78 | public function testCreateFilter() |
| 79 | 79 | { |
| 80 | - $search = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createSearch(); |
|
| 80 | + $search = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createSearch(); |
|
| 81 | 81 | |
| 82 | - $this->stub->expects( $this->once() )->method( 'createFilter' )->will( $this->returnValue( $search ) ); |
|
| 82 | + $this->stub->expects($this->once())->method('createFilter')->will($this->returnValue($search)); |
|
| 83 | 83 | |
| 84 | - $this->assertInstanceOf( '\Aimeos\MW\Criteria\Iface', $this->object->createFilter() ); |
|
| 84 | + $this->assertInstanceOf('\Aimeos\MW\Criteria\Iface', $this->object->createFilter()); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | |
| 88 | 88 | public function testGetItem() |
| 89 | 89 | { |
| 90 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 90 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 91 | 91 | |
| 92 | - $this->stub->expects( $this->once() )->method( 'getItem' )->will( $this->returnValue( $item ) ); |
|
| 92 | + $this->stub->expects($this->once())->method('getItem')->will($this->returnValue($item)); |
|
| 93 | 93 | |
| 94 | - $this->assertInstanceOf( '\Aimeos\MShop\Order\Item\Iface', $this->object->getItem( -1 ) ); |
|
| 94 | + $this->assertInstanceOf('\Aimeos\MShop\Order\Item\Iface', $this->object->getItem( -1 )); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | |
| 98 | 98 | public function testSaveItem() |
| 99 | 99 | { |
| 100 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 100 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 101 | 101 | |
| 102 | - $this->stub->expects( $this->once() )->method( 'saveItem' ); |
|
| 102 | + $this->stub->expects($this->once())->method('saveItem'); |
|
| 103 | 103 | |
| 104 | - $this->object->saveItem( $item ); |
|
| 104 | + $this->object->saveItem($item); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | |
| 108 | 108 | public function testSearchItems() |
| 109 | 109 | { |
| 110 | - $search = $this->getMockBuilder( '\Aimeos\MW\Criteria\Iface' )->getMock(); |
|
| 110 | + $search = $this->getMockBuilder('\Aimeos\MW\Criteria\Iface')->getMock(); |
|
| 111 | 111 | |
| 112 | - $this->stub->expects( $this->once() )->method( 'searchItems' )->will( $this->returnValue( [] ) ); |
|
| 112 | + $this->stub->expects($this->once())->method('searchItems')->will($this->returnValue([])); |
|
| 113 | 113 | |
| 114 | - $this->assertEquals( [], $this->object->searchItems( $search ) ); |
|
| 114 | + $this->assertEquals([], $this->object->searchItems($search)); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | |
| 118 | 118 | public function testUnblock() |
| 119 | 119 | { |
| 120 | - $orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 120 | + $orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 121 | 121 | |
| 122 | - $this->stub->expects( $this->once() )->method( 'unblock' ); |
|
| 122 | + $this->stub->expects($this->once())->method('unblock'); |
|
| 123 | 123 | |
| 124 | - $this->object->unblock( $orderItem ); |
|
| 124 | + $this->object->unblock($orderItem); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | |
| 128 | 128 | public function testUpdate() |
| 129 | 129 | { |
| 130 | - $orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 130 | + $orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 131 | 131 | |
| 132 | - $this->stub->expects( $this->once() )->method( 'update' ); |
|
| 132 | + $this->stub->expects($this->once())->method('update'); |
|
| 133 | 133 | |
| 134 | - $this->object->update( $orderItem ); |
|
| 134 | + $this->object->update($orderItem); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | |
| 138 | 138 | public function testGetController() |
| 139 | 139 | { |
| 140 | - $result = $this->access( 'getController' )->invokeArgs( $this->object, [] ); |
|
| 140 | + $result = $this->access('getController')->invokeArgs($this->object, []); |
|
| 141 | 141 | |
| 142 | - $this->assertSame( $this->stub, $result ); |
|
| 142 | + $this->assertSame($this->stub, $result); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | |
| 146 | - protected function access( $name ) |
|
| 146 | + protected function access($name) |
|
| 147 | 147 | { |
| 148 | - $class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ); |
|
| 149 | - $method = $class->getMethod( $name ); |
|
| 150 | - $method->setAccessible( true ); |
|
| 148 | + $class = new \ReflectionClass('\Aimeos\Controller\Frontend\Order\Decorator\Base'); |
|
| 149 | + $method = $class->getMethod($name); |
|
| 150 | + $method->setAccessible(true); |
|
| 151 | 151 | |
| 152 | 152 | return $method; |
| 153 | 153 | } |
@@ -30,18 +30,18 @@ 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\Order\Iface'; |
| 36 | - if( !( $controller instanceof $iface ) ) |
|
| 36 | + if (!($controller instanceof $iface)) |
|
| 37 | 37 | { |
| 38 | - $msg = sprintf( 'Class "%1$s" does not implement interface "%2$s"', get_class( $controller ), $iface ); |
|
| 39 | - throw new \Aimeos\Controller\Frontend\Exception( $msg ); |
|
| 38 | + $msg = sprintf('Class "%1$s" does not implement interface "%2$s"', get_class($controller), $iface); |
|
| 39 | + throw new \Aimeos\Controller\Frontend\Exception($msg); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | $this->controller = $controller; |
| 43 | 43 | |
| 44 | - parent::__construct( $context ); |
|
| 44 | + parent::__construct($context); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | |
@@ -53,9 +53,9 @@ discard block |
||
| 53 | 53 | * @return mixed Returns the value of the called method |
| 54 | 54 | * @throws \Aimeos\Controller\Frontend\Exception If method call failed |
| 55 | 55 | */ |
| 56 | - public function __call( $name, array $param ) |
|
| 56 | + public function __call($name, array $param) |
|
| 57 | 57 | { |
| 58 | - return @call_user_func_array( array( $this->controller, $name ), $param ); |
|
| 58 | + return @call_user_func_array(array($this->controller, $name), $param); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | |
@@ -66,9 +66,9 @@ discard block |
||
| 66 | 66 | * @param string $type Arbitrary order type (max. eight chars) |
| 67 | 67 | * @return \Aimeos\MShop\Order\Item\Iface Created order object |
| 68 | 68 | */ |
| 69 | - public function addItem( $baseId, $type ) |
|
| 69 | + public function addItem($baseId, $type) |
|
| 70 | 70 | { |
| 71 | - return $this->controller->addItem( $baseId, $type ); |
|
| 71 | + return $this->controller->addItem($baseId, $type); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | |
@@ -90,9 +90,9 @@ discard block |
||
| 90 | 90 | * @param boolean $default Use default criteria to limit orders |
| 91 | 91 | * @return \Aimeos\MShop\Order\Item\Iface Order object |
| 92 | 92 | */ |
| 93 | - public function getItem( $id, $default = true ) |
|
| 93 | + public function getItem($id, $default = true) |
|
| 94 | 94 | { |
| 95 | - return $this->controller->getItem( $id ); |
|
| 95 | + return $this->controller->getItem($id); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | |
@@ -102,9 +102,9 @@ discard block |
||
| 102 | 102 | * @param \Aimeos\MShop\Order\Item\Iface $item Order object |
| 103 | 103 | * @return \Aimeos\MShop\Order\Item\Iface Saved order item |
| 104 | 104 | */ |
| 105 | - public function saveItem( \Aimeos\MShop\Order\Item\Iface $item ) |
|
| 105 | + public function saveItem(\Aimeos\MShop\Order\Item\Iface $item) |
|
| 106 | 106 | { |
| 107 | - return $this->controller->saveItem( $item ); |
|
| 107 | + return $this->controller->saveItem($item); |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | |
@@ -115,9 +115,9 @@ discard block |
||
| 115 | 115 | * @param integer &$total|null Variable that will contain the total number of available items |
| 116 | 116 | * @return \Aimeos\MShop\Order\Item\Iface[] Associative list of IDs as keys and order objects as values |
| 117 | 117 | */ |
| 118 | - public function searchItems( \Aimeos\MW\Criteria\Iface $filter, &$total = null ) |
|
| 118 | + public function searchItems(\Aimeos\MW\Criteria\Iface $filter, &$total = null) |
|
| 119 | 119 | { |
| 120 | - return $this->controller->searchItems( $filter, $total ); |
|
| 120 | + return $this->controller->searchItems($filter, $total); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | |
@@ -140,9 +140,9 @@ discard block |
||
| 140 | 140 | * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object |
| 141 | 141 | * @return void |
| 142 | 142 | */ |
| 143 | - public function block( \Aimeos\MShop\Order\Item\Iface $orderItem ) |
|
| 143 | + public function block(\Aimeos\MShop\Order\Item\Iface $orderItem) |
|
| 144 | 144 | { |
| 145 | - $this->getController()->block( $orderItem ); |
|
| 145 | + $this->getController()->block($orderItem); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | |
@@ -165,9 +165,9 @@ discard block |
||
| 165 | 165 | * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object |
| 166 | 166 | * @return void |
| 167 | 167 | */ |
| 168 | - public function unblock( \Aimeos\MShop\Order\Item\Iface $orderItem ) |
|
| 168 | + public function unblock(\Aimeos\MShop\Order\Item\Iface $orderItem) |
|
| 169 | 169 | { |
| 170 | - $this->getController()->unblock( $orderItem ); |
|
| 170 | + $this->getController()->unblock($orderItem); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | |
@@ -186,9 +186,9 @@ discard block |
||
| 186 | 186 | * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object |
| 187 | 187 | * @return void |
| 188 | 188 | */ |
| 189 | - public function update( \Aimeos\MShop\Order\Item\Iface $orderItem ) |
|
| 189 | + public function update(\Aimeos\MShop\Order\Item\Iface $orderItem) |
|
| 190 | 190 | { |
| 191 | - $this->getController()->update( $orderItem ); |
|
| 191 | + $this->getController()->update($orderItem); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * @param string $type Arbitrary order type (max. eight chars) |
| 28 | 28 | * @return \Aimeos\MShop\Order\Item\Iface Created order object |
| 29 | 29 | */ |
| 30 | - public function addItem( $baseId, $type ); |
|
| 30 | + public function addItem($baseId, $type); |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | * @param boolean $default Use default criteria to limit orders |
| 46 | 46 | * @return \Aimeos\MShop\Order\Item\Iface Order object |
| 47 | 47 | */ |
| 48 | - public function getItem( $id, $default = true ); |
|
| 48 | + public function getItem($id, $default = true); |
|
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | * @param \Aimeos\MShop\Order\Item\Iface $item Order object |
| 55 | 55 | * @return \Aimeos\MShop\Order\Item\Iface Saved order item |
| 56 | 56 | */ |
| 57 | - public function saveItem( \Aimeos\MShop\Order\Item\Iface $item ); |
|
| 57 | + public function saveItem(\Aimeos\MShop\Order\Item\Iface $item); |
|
| 58 | 58 | |
| 59 | 59 | |
| 60 | 60 | /** |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | * @param integer &$total|null Variable that will contain the total number of available items |
| 65 | 65 | * @return \Aimeos\MShop\Order\Item\Iface[] Associative list of IDs as keys and order objects as values |
| 66 | 66 | */ |
| 67 | - public function searchItems( \Aimeos\MW\Criteria\Iface $filter, &$total = null ); |
|
| 67 | + public function searchItems(\Aimeos\MW\Criteria\Iface $filter, &$total = null); |
|
| 68 | 68 | |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object |
| 87 | 87 | * @return void |
| 88 | 88 | */ |
| 89 | - public function block( \Aimeos\MShop\Order\Item\Iface $orderItem ); |
|
| 89 | + public function block(\Aimeos\MShop\Order\Item\Iface $orderItem); |
|
| 90 | 90 | |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object |
| 109 | 109 | * @return void |
| 110 | 110 | */ |
| 111 | - public function unblock( \Aimeos\MShop\Order\Item\Iface $orderItem ); |
|
| 111 | + public function unblock(\Aimeos\MShop\Order\Item\Iface $orderItem); |
|
| 112 | 112 | |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -126,5 +126,5 @@ discard block |
||
| 126 | 126 | * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object |
| 127 | 127 | * @return void |
| 128 | 128 | */ |
| 129 | - public function update( \Aimeos\MShop\Order\Item\Iface $orderItem ); |
|
| 129 | + public function update(\Aimeos\MShop\Order\Item\Iface $orderItem); |
|
| 130 | 130 | } |