Completed
Push — master ( f23e00...1d5010 )
by Aimeos
02:31
created
controller/frontend/tests/Controller/Frontend/Service/FactoryTest.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -15,31 +15,31 @@
 block discarded – undo
15 15
 	{
16 16
 		$target = '\\Aimeos\\Controller\\Frontend\\Service\\Iface';
17 17
 
18
-		$controller = \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext() );
19
-		$this->assertInstanceOf( $target, $controller );
18
+		$controller = \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext());
19
+		$this->assertInstanceOf($target, $controller);
20 20
 
21
-		$controller = \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), 'Standard' );
22
-		$this->assertInstanceOf( $target, $controller );
21
+		$controller = \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), 'Standard');
22
+		$this->assertInstanceOf($target, $controller);
23 23
 	}
24 24
 
25 25
 
26 26
 	public function testCreateControllerInvalidImplementation()
27 27
 	{
28
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
29
-		\Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), 'Invalid' );
28
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
29
+		\Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), 'Invalid');
30 30
 	}
31 31
 
32 32
 
33 33
 	public function testCreateControllerInvalidName()
34 34
 	{
35
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
36
-		\Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), '%^' );
35
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
36
+		\Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), '%^');
37 37
 	}
38 38
 
39 39
 
40 40
 	public function testCreateControllerNotExisting()
41 41
 	{
42
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' );
43
-		\Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), 'notexist' );
42
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception');
43
+		\Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), 'notexist');
44 44
 	}
45 45
 }
Please login to merge, or discard this patch.
frontend/tests/Controller/Frontend/Service/Decorator/BaseTest.php 1 patch
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -20,161 +20,161 @@
 block discarded – undo
20 20
 	{
21 21
 		$this->context = \TestHelperFrontend::getContext();
22 22
 
23
-		$this->stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Standard' )
23
+		$this->stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Standard')
24 24
 			->disableOriginalConstructor()
25 25
 			->getMock();
26 26
 
27
-		$this->object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Decorator\Base' )
28
-			->setConstructorArgs( [$this->stub, $this->context] )
27
+		$this->object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\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\Service\Decorator\Base' )
46
-			->setConstructorArgs( [$stub, $this->context] )
45
+		$this->getMockBuilder('\Aimeos\Controller\Frontend\Service\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\Service\Standard' )
53
+		$stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Standard')
54 54
 			->disableOriginalConstructor()
55
-			->setMethods( ['invalid'] )
55
+			->setMethods(['invalid'])
56 56
 			->getMock();
57 57
 
58
-		$object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Decorator\Base' )
59
-			->setConstructorArgs( [$stub, $this->context] )
58
+		$object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\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 testCheckAttributes()
69 69
 	{
70
-		$this->stub->expects( $this->once() )->method( 'checkAttributes' )
71
-			->will( $this->returnValue( [] ) );
70
+		$this->stub->expects($this->once())->method('checkAttributes')
71
+			->will($this->returnValue([]));
72 72
 
73
-		$this->assertEquals( [], $this->object->checkAttributes( -1, [] ) );
73
+		$this->assertEquals([], $this->object->checkAttributes( -1, [] ));
74 74
 	}
75 75
 
76 76
 
77 77
 	public function testGetProvider()
78 78
 	{
79
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'service' );
80
-		$provider = $manager->getProvider( $manager->findItem( 'unitcode', [], 'service', 'delivery' ) );
79
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'service');
80
+		$provider = $manager->getProvider($manager->findItem('unitcode', [], 'service', 'delivery'));
81 81
 
82
-		$this->stub->expects( $this->once() )->method( 'getProvider' )
83
-			->will( $this->returnValue( $provider ) );
82
+		$this->stub->expects($this->once())->method('getProvider')
83
+			->will($this->returnValue($provider));
84 84
 
85
-		$this->assertSame( $provider, $this->object->getProvider( -1 ) );
85
+		$this->assertSame($provider, $this->object->getProvider( -1 ));
86 86
 	}
87 87
 
88 88
 
89 89
 	public function testGetProviders()
90 90
 	{
91
-		$this->stub->expects( $this->once() )->method( 'getProviders' )
92
-			->will( $this->returnValue( [] ) );
91
+		$this->stub->expects($this->once())->method('getProviders')
92
+			->will($this->returnValue([]));
93 93
 
94
-		$this->assertEquals( [], $this->object->getProviders( 'payment' ) );
94
+		$this->assertEquals([], $this->object->getProviders('payment'));
95 95
 	}
96 96
 
97 97
 
98 98
 	public function testProcess()
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( 'process' )
103
-			->will( $this->returnValue( new \Aimeos\MShop\Common\Item\Helper\Form\Standard() ) );
102
+		$this->stub->expects($this->once())->method('process')
103
+			->will($this->returnValue(new \Aimeos\MShop\Common\Item\Helper\Form\Standard()));
104 104
 
105
-		$this->assertInstanceOf( 'Aimeos\MShop\Common\Item\Helper\Form\Iface', $this->object->process( $item, -1, [], [] ) );
105
+		$this->assertInstanceOf('Aimeos\MShop\Common\Item\Helper\Form\Iface', $this->object->process($item, -1, [], []));
106 106
 	}
107 107
 
108 108
 
109 109
 	public function testUpdateSync()
110 110
 	{
111
-		$response = $this->getMockBuilder( '\Psr\Http\Message\ResponseInterface' )->getMock();
112
-		$request = $this->getMockBuilder( '\Psr\Http\Message\ServerRequestInterface' )->getMock();
113
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem();
111
+		$response = $this->getMockBuilder('\Psr\Http\Message\ResponseInterface')->getMock();
112
+		$request = $this->getMockBuilder('\Psr\Http\Message\ServerRequestInterface')->getMock();
113
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem();
114 114
 
115
-		$this->stub->expects( $this->once() )->method( 'updateSync' )
116
-			->will( $this->returnValue( $item ) );
115
+		$this->stub->expects($this->once())->method('updateSync')
116
+			->will($this->returnValue($item));
117 117
 
118
-		$this->assertInstanceOf( 'Aimeos\MShop\Order\Item\Iface', $this->object->updateSync( $request, $response, [] ) );
118
+		$this->assertInstanceOf('Aimeos\MShop\Order\Item\Iface', $this->object->updateSync($request, $response, []));
119 119
 	}
120 120
 
121 121
 
122 122
 	public function testGetServices()
123 123
 	{
124
-		$basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem();
124
+		$basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem();
125 125
 
126
-		$this->stub->expects( $this->once() )->method( 'getServices' )
127
-			->will( $this->returnValue( [] ) );
126
+		$this->stub->expects($this->once())->method('getServices')
127
+			->will($this->returnValue([]));
128 128
 
129
-		$this->assertEquals( [], $this->object->getServices( 'payment', $basket ) );
129
+		$this->assertEquals([], $this->object->getServices('payment', $basket));
130 130
 	}
131 131
 
132 132
 
133 133
 	public function testGetServiceAttributes()
134 134
 	{
135
-		$basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem();
135
+		$basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem();
136 136
 
137
-		$this->stub->expects( $this->once() )->method( 'getServiceAttributes' )
138
-			->will( $this->returnValue( [] ) );
137
+		$this->stub->expects($this->once())->method('getServiceAttributes')
138
+			->will($this->returnValue([]));
139 139
 
140
-		$this->assertEquals( [], $this->object->getServiceAttributes( 'payment', -1, $basket ) );
140
+		$this->assertEquals([], $this->object->getServiceAttributes('payment', -1, $basket));
141 141
 	}
142 142
 
143 143
 
144 144
 	public function testGetServicePrice()
145 145
 	{
146
-		$priceItem = \Aimeos\MShop\Factory::createManager( $this->context, 'price' )->createItem();
147
-		$basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem();
146
+		$priceItem = \Aimeos\MShop\Factory::createManager($this->context, 'price')->createItem();
147
+		$basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem();
148 148
 
149
-		$this->stub->expects( $this->once() )->method( 'getServicePrice' )
150
-			->will( $this->returnValue( $priceItem ) );
149
+		$this->stub->expects($this->once())->method('getServicePrice')
150
+			->will($this->returnValue($priceItem));
151 151
 
152
-		$this->assertInstanceOf( '\Aimeos\MShop\Price\Item\Iface', $this->object->getServicePrice( 'payment', -1, $basket ) );
152
+		$this->assertInstanceOf('\Aimeos\MShop\Price\Item\Iface', $this->object->getServicePrice('payment', -1, $basket));
153 153
 	}
154 154
 
155 155
 
156 156
 	public function testCheckServiceAttributes()
157 157
 	{
158
-		$this->stub->expects( $this->once() )->method( 'checkServiceAttributes' )
159
-			->will( $this->returnValue( [] ) );
158
+		$this->stub->expects($this->once())->method('checkServiceAttributes')
159
+			->will($this->returnValue([]));
160 160
 
161
-		$this->assertEquals( [], $this->object->checkServiceAttributes( 'payment', -1, [] ) );
161
+		$this->assertEquals([], $this->object->checkServiceAttributes('payment', -1, []));
162 162
 	}
163 163
 
164 164
 
165 165
 	public function testGetController()
166 166
 	{
167
-		$result = $this->access( 'getController' )->invokeArgs( $this->object, [] );
167
+		$result = $this->access('getController')->invokeArgs($this->object, []);
168 168
 
169
-		$this->assertSame( $this->stub, $result );
169
+		$this->assertSame($this->stub, $result);
170 170
 	}
171 171
 
172 172
 
173
-	protected function access( $name )
173
+	protected function access($name)
174 174
 	{
175
-		$class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Service\Decorator\Base' );
176
-		$method = $class->getMethod( $name );
177
-		$method->setAccessible( true );
175
+		$class = new \ReflectionClass('\Aimeos\Controller\Frontend\Service\Decorator\Base');
176
+		$method = $class->getMethod($name);
177
+		$method->setAccessible(true);
178 178
 
179 179
 		return $method;
180 180
 	}
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Order/Iface.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 	/**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 * @param string $id Unique order ID
45 45
 	 * @return \Aimeos\MShop\Order\Item\Iface Order object
46 46
 	 */
47
-	public function getItem( $id );
47
+	public function getItem($id);
48 48
 
49 49
 
50 50
 	/**
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * @param integer &$total|null Variable that will contain the total number of available items
55 55
 	 * @return \Aimeos\MShop\Order\Item\Iface[] Associative list of IDs as keys and order objects as values
56 56
 	 */
57
-	public function searchItems( \Aimeos\MW\Criteria\Iface $filter, &$total = null );
57
+	public function searchItems(\Aimeos\MW\Criteria\Iface $filter, &$total = null);
58 58
 
59 59
 
60 60
 	/**
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object
77 77
 	 * @return void
78 78
 	 */
79
-	public function block( \Aimeos\MShop\Order\Item\Iface $orderItem );
79
+	public function block(\Aimeos\MShop\Order\Item\Iface $orderItem);
80 80
 
81 81
 
82 82
 	/**
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object
99 99
 	 * @return void
100 100
 	 */
101
-	public function unblock( \Aimeos\MShop\Order\Item\Iface $orderItem );
101
+	public function unblock(\Aimeos\MShop\Order\Item\Iface $orderItem);
102 102
 
103 103
 
104 104
 	/**
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	 * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object
117 117
 	 * @return void
118 118
 	 */
119
-	public function update( \Aimeos\MShop\Order\Item\Iface $orderItem );
119
+	public function update(\Aimeos\MShop\Order\Item\Iface $orderItem);
120 120
 
121 121
 
122 122
 	/**
@@ -130,5 +130,5 @@  discard block
 block discarded – undo
130 130
 	 * @return \Aimeos\MShop\Order\Item\Iface Order item that belongs to the stored basket
131 131
 	 * @deprecated 2017.04 Use store() from basket controller instead
132 132
 	 */
133
-	public function store( \Aimeos\MShop\Order\Item\Base\Iface $basket );
133
+	public function store(\Aimeos\MShop\Order\Item\Base\Iface $basket);
134 134
 }
Please login to merge, or discard this patch.
controller/frontend/tests/Controller/Frontend/Order/Decorator/BaseTest.php 1 patch
Spacing   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -20,136 +20,136 @@
 block discarded – undo
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 testSearchItems()
99 99
 	{
100
-		$search = $this->getMockBuilder( '\Aimeos\MW\Criteria\Iface' )->getMock();
100
+		$search = $this->getMockBuilder('\Aimeos\MW\Criteria\Iface')->getMock();
101 101
 
102
-		$this->stub->expects( $this->once() )->method( 'searchItems' )->will( $this->returnValue( [] ) );
102
+		$this->stub->expects($this->once())->method('searchItems')->will($this->returnValue([]));
103 103
 
104
-		$this->assertEquals( [], $this->object->searchItems( $search ) );
104
+		$this->assertEquals([], $this->object->searchItems($search));
105 105
 	}
106 106
 
107 107
 
108 108
 	public function testUnblock()
109 109
 	{
110
-		$orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem();
110
+		$orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem();
111 111
 
112
-		$this->stub->expects( $this->once() )->method( 'unblock' );
112
+		$this->stub->expects($this->once())->method('unblock');
113 113
 
114
-		$this->object->unblock( $orderItem );
114
+		$this->object->unblock($orderItem);
115 115
 	}
116 116
 
117 117
 
118 118
 	public function testUpdate()
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( 'update' );
122
+		$this->stub->expects($this->once())->method('update');
123 123
 
124
-		$this->object->update( $orderItem );
124
+		$this->object->update($orderItem);
125 125
 	}
126 126
 
127 127
 
128 128
 	public function testStore()
129 129
 	{
130
-		$orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem();
131
-		$basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem();
130
+		$orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem();
131
+		$basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem();
132 132
 
133
-		$this->stub->expects( $this->once() )->method( 'store' )
134
-			->will( $this->returnValue( $orderItem ) );
133
+		$this->stub->expects($this->once())->method('store')
134
+			->will($this->returnValue($orderItem));
135 135
 
136
-		$this->assertInstanceOf( '\Aimeos\MShop\Order\Item\Iface', $this->object->store( $basket ) );
136
+		$this->assertInstanceOf('\Aimeos\MShop\Order\Item\Iface', $this->object->store($basket));
137 137
 	}
138 138
 
139 139
 
140 140
 	public function testGetController()
141 141
 	{
142
-		$result = $this->access( 'getController' )->invokeArgs( $this->object, [] );
142
+		$result = $this->access('getController')->invokeArgs($this->object, []);
143 143
 
144
-		$this->assertSame( $this->stub, $result );
144
+		$this->assertSame($this->stub, $result);
145 145
 	}
146 146
 
147 147
 
148
-	protected function access( $name )
148
+	protected function access($name)
149 149
 	{
150
-		$class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Order\Decorator\Base' );
151
-		$method = $class->getMethod( $name );
152
-		$method->setAccessible( true );
150
+		$class = new \ReflectionClass('\Aimeos\Controller\Frontend\Order\Decorator\Base');
151
+		$method = $class->getMethod($name);
152
+		$method->setAccessible(true);
153 153
 
154 154
 		return $method;
155 155
 	}
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Service/Iface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * @param string[] $attributes List of attribute codes as keys and strings entered by the customer as value
31 31
 	 * @return string[] List of attributes codes as keys and error messages as values for invalid or missing values
32 32
 	 */
33
-	public function checkAttributes( $serviceId, array $attributes );
33
+	public function checkAttributes($serviceId, array $attributes);
34 34
 
35 35
 	/**
36 36
 	 * Returns the service item for the given ID
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 * @param array $ref List of domains for which the items referenced by the services should be fetched too
40 40
 	 * @return \Aimeos\MShop\Service\Provider\Iface Service provider object
41 41
 	 */
42
-	public function getProvider( $serviceId, $ref = ['media', 'price', 'text'] );
42
+	public function getProvider($serviceId, $ref = ['media', 'price', 'text']);
43 43
 
44 44
 	/**
45 45
 	 * Returns the service providers for the given type
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * @param array $ref List of domains for which the items referenced by the services should be fetched too
49 49
 	 * @return \Aimeos\MShop\Service\Provider\Iface[] List of service IDs as keys and service provider objects as values
50 50
 	 */
51
-	public function getProviders( $type = null, $ref = ['media', 'price', 'text'] );
51
+	public function getProviders($type = null, $ref = ['media', 'price', 'text']);
52 52
 
53 53
 	/**
54 54
 	 * Processes the service for the given order, e.g. payment and delivery services
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	 * @return \Aimeos\MShop\Common\Item\Helper\Form\Iface|null Form object with URL, parameters, etc.
62 62
 	 * 	or null if no form data is required
63 63
 	 */
64
-	public function process( \Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params );
64
+	public function process(\Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params);
65 65
 
66 66
 	/**
67 67
 	 * Updates the payment or delivery status for the given request
@@ -72,5 +72,5 @@  discard block
 block discarded – undo
72 72
 	 * 	(keys are <type>.url-self, <type>.url-success, <type>.url-update where type can be "delivery" or "payment")
73 73
 	 * @return \Aimeos\MShop\Order\Item\Iface $orderItem Order item that has been updated
74 74
 	 */
75
-	public function updateSync( ServerRequestInterface $request, ResponseInterface $response, array $urls );
75
+	public function updateSync(ServerRequestInterface $request, ResponseInterface $response, array $urls);
76 76
 }
Please login to merge, or discard this patch.
controller/frontend/tests/Controller/Frontend/Service/StandardTest.php 1 patch
Spacing   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -17,122 +17,122 @@  discard block
 block discarded – undo
17 17
 
18 18
 	protected function setUp()
19 19
 	{
20
-		\Aimeos\MShop\Factory::setCache( true );
20
+		\Aimeos\MShop\Factory::setCache(true);
21 21
 
22 22
 		$this->context = \TestHelperFrontend::getContext();
23
-		$this->object = new \Aimeos\Controller\Frontend\Service\Standard( $this->context );
23
+		$this->object = new \Aimeos\Controller\Frontend\Service\Standard($this->context);
24 24
 	}
25 25
 
26 26
 
27 27
 	public static function setUpBeforeClass()
28 28
 	{
29
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
30
-		$orderBaseMgr = $orderManager->getSubManager( 'base' );
29
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
30
+		$orderBaseMgr = $orderManager->getSubManager('base');
31 31
 		self::$basket = $orderBaseMgr->createItem();
32 32
 	}
33 33
 
34 34
 
35 35
 	protected function tearDown()
36 36
 	{
37
-		unset( $this->object, $this->context );
37
+		unset($this->object, $this->context);
38 38
 
39
-		\Aimeos\MShop\Factory::setCache( false );
39
+		\Aimeos\MShop\Factory::setCache(false);
40 40
 		\Aimeos\MShop\Factory::clear();
41 41
 	}
42 42
 
43 43
 
44 44
 	public function testCheckAttributes()
45 45
 	{
46
-		$attributes = $this->object->checkAttributes( $this->getServiceItem()->getId(), [] );
47
-		$this->assertEquals( [], $attributes );
46
+		$attributes = $this->object->checkAttributes($this->getServiceItem()->getId(), []);
47
+		$this->assertEquals([], $attributes);
48 48
 	}
49 49
 
50 50
 
51 51
 	public function testGetProviders()
52 52
 	{
53
-		$providers = $this->object->getProviders( 'delivery' );
54
-		$this->assertGreaterThan( 0, count( $providers ) );
53
+		$providers = $this->object->getProviders('delivery');
54
+		$this->assertGreaterThan(0, count($providers));
55 55
 
56
-		foreach( $providers as $provider ) {
57
-			$this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider );
56
+		foreach ($providers as $provider) {
57
+			$this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider);
58 58
 		}
59 59
 	}
60 60
 
61 61
 
62 62
 	public function testGetProvider()
63 63
 	{
64
-		$provider = $this->object->getProvider( $this->getServiceItem()->getId() );
65
-		$this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider );
64
+		$provider = $this->object->getProvider($this->getServiceItem()->getId());
65
+		$this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider);
66 66
 	}
67 67
 
68 68
 
69 69
 	public function testProcess()
70 70
 	{
71 71
 		$form = new \Aimeos\MShop\Common\Item\Helper\Form\Standard();
72
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem();
73
-		$serviceId = \Aimeos\MShop\Factory::createManager( $this->context, 'service' )->findItem( 'unitcode' )->getId();
72
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem();
73
+		$serviceId = \Aimeos\MShop\Factory::createManager($this->context, 'service')->findItem('unitcode')->getId();
74 74
 
75
-		$provider = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard' )
75
+		$provider = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard')
76 76
 			->disableOriginalConstructor()
77
-			->setMethods( ['process'] )
77
+			->setMethods(['process'])
78 78
 			->getMock();
79 79
 
80
-		$manager = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Manager\\Standard' )
81
-			->setConstructorArgs( [$this->context] )
82
-			->setMethods( ['getProvider'] )
80
+		$manager = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Manager\\Standard')
81
+			->setConstructorArgs([$this->context])
82
+			->setMethods(['getProvider'])
83 83
 			->getMock();
84 84
 
85
-		\Aimeos\MShop\Factory::injectManager( $this->context, 'service', $manager );
85
+		\Aimeos\MShop\Factory::injectManager($this->context, 'service', $manager);
86 86
 
87
-		$provider->expects( $this->once() )->method( 'process' )->will( $this->returnValue( $form ) );
88
-		$manager->expects( $this->once() )->method( 'getProvider' )->will( $this->returnValue( $provider ) );
87
+		$provider->expects($this->once())->method('process')->will($this->returnValue($form));
88
+		$manager->expects($this->once())->method('getProvider')->will($this->returnValue($provider));
89 89
 
90 90
 
91
-		$result = $this->object->process( $item, $serviceId, [], [] );
92
-		$this->assertInstanceOf( '\Aimeos\MShop\Common\Item\Helper\Form\Iface', $result );
91
+		$result = $this->object->process($item, $serviceId, [], []);
92
+		$this->assertInstanceOf('\Aimeos\MShop\Common\Item\Helper\Form\Iface', $result);
93 93
 	}
94 94
 
95 95
 
96 96
 	public function testUpdateSync()
97 97
 	{
98
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem();
98
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem();
99 99
 
100
-		$response = $this->getMockBuilder( '\Psr\Http\Message\ResponseInterface' )->getMock();
101
-		$request = $this->getMockBuilder( '\Psr\Http\Message\ServerRequestInterface' )->getMock();
100
+		$response = $this->getMockBuilder('\Psr\Http\Message\ResponseInterface')->getMock();
101
+		$request = $this->getMockBuilder('\Psr\Http\Message\ServerRequestInterface')->getMock();
102 102
 
103
-		$provider = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard' )
104
-			->setMethods( ['updateSync', 'query', 'isImplemented'] )
103
+		$provider = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard')
104
+			->setMethods(['updateSync', 'query', 'isImplemented'])
105 105
 			->disableOriginalConstructor()
106 106
 			->getMock();
107 107
 
108
-		$manager = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Manager\\Standard' )
109
-			->setConstructorArgs( array( $this->context ) )
110
-			->setMethods( ['getProvider'] )
108
+		$manager = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Manager\\Standard')
109
+			->setConstructorArgs(array($this->context))
110
+			->setMethods(['getProvider'])
111 111
 			->getMock();
112 112
 
113
-		\Aimeos\MShop\Factory::injectManager( $this->context, 'service', $manager );
113
+		\Aimeos\MShop\Factory::injectManager($this->context, 'service', $manager);
114 114
 
115 115
 
116
-		$request->expects( $this->once() )->method( 'getQueryParams' )->will( $this->returnValue( ['code' => 'unitcode'] ) );
117
-		$manager->expects( $this->once() )->method( 'getProvider' )->will( $this->returnValue( $provider ) );
118
-		$provider->expects( $this->once() )->method( 'updateSync' )->will( $this->returnValue( $item ) );
119
-		$provider->expects( $this->once() )->method( 'isImplemented' )->will( $this->returnValue( true ) );
120
-		$provider->expects( $this->once() )->method( 'query' );
116
+		$request->expects($this->once())->method('getQueryParams')->will($this->returnValue(['code' => 'unitcode']));
117
+		$manager->expects($this->once())->method('getProvider')->will($this->returnValue($provider));
118
+		$provider->expects($this->once())->method('updateSync')->will($this->returnValue($item));
119
+		$provider->expects($this->once())->method('isImplemented')->will($this->returnValue(true));
120
+		$provider->expects($this->once())->method('query');
121 121
 
122
-		$this->object->updateSync( $request, $response, [] );
122
+		$this->object->updateSync($request, $response, []);
123 123
 	}
124 124
 
125 125
 
126 126
 	public function testGetServices()
127 127
 	{
128
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
129
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
128
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
129
+		$basket = $orderManager->getSubManager('base')->createItem();
130 130
 
131
-		$services = $this->object->getServices( 'delivery', $basket );
132
-		$this->assertGreaterThan( 0, count( $services ) );
131
+		$services = $this->object->getServices('delivery', $basket);
132
+		$this->assertGreaterThan(0, count($services));
133 133
 
134
-		foreach( $services as $service ) {
135
-			$this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Item\\Iface', $service );
134
+		foreach ($services as $service) {
135
+			$this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Item\\Iface', $service);
136 136
 		}
137 137
 	}
138 138
 
@@ -140,83 +140,83 @@  discard block
 block discarded – undo
140 140
 	public function testGetServiceAttributes()
141 141
 	{
142 142
 		$service = $this->getServiceItem();
143
-		$attributes = $this->object->getServiceAttributes( 'delivery', $service->getId(), self::$basket );
143
+		$attributes = $this->object->getServiceAttributes('delivery', $service->getId(), self::$basket);
144 144
 
145
-		$this->assertEquals( 0, count( $attributes ) );
145
+		$this->assertEquals(0, count($attributes));
146 146
 	}
147 147
 
148 148
 
149 149
 	public function testGetServiceAttributesCache()
150 150
 	{
151
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
152
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
151
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
152
+		$basket = $orderManager->getSubManager('base')->createItem();
153 153
 
154
-		$services = $this->object->getServices( 'delivery', $basket );
154
+		$services = $this->object->getServices('delivery', $basket);
155 155
 
156
-		if( ( $service = reset( $services ) ) === false ) {
157
-			throw new \RuntimeException( 'No service item found' );
156
+		if (($service = reset($services)) === false) {
157
+			throw new \RuntimeException('No service item found');
158 158
 		}
159 159
 
160
-		$attributes = $this->object->getServiceAttributes( 'delivery', $service->getId(), self::$basket );
160
+		$attributes = $this->object->getServiceAttributes('delivery', $service->getId(), self::$basket);
161 161
 
162
-		$this->assertEquals( 0, count( $attributes ) );
162
+		$this->assertEquals(0, count($attributes));
163 163
 	}
164 164
 
165 165
 
166 166
 	public function testGetServiceAttributesNoItems()
167 167
 	{
168
-		$this->setExpectedException( '\\Aimeos\\MShop\\Exception' );
169
-		$this->object->getServiceAttributes( 'invalid', -1, self::$basket );
168
+		$this->setExpectedException('\\Aimeos\\MShop\\Exception');
169
+		$this->object->getServiceAttributes('invalid', -1, self::$basket);
170 170
 	}
171 171
 
172 172
 
173 173
 	public function testGetServicePrice()
174 174
 	{
175
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
176
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
175
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
176
+		$basket = $orderManager->getSubManager('base')->createItem();
177 177
 
178 178
 		$service = $this->getServiceItem();
179
-		$price = $this->object->getServicePrice( 'delivery', $service->getId(), $basket );
179
+		$price = $this->object->getServicePrice('delivery', $service->getId(), $basket);
180 180
 
181
-		$this->assertEquals( '12.95', $price->getValue() );
182
-		$this->assertEquals( '1.99', $price->getCosts() );
181
+		$this->assertEquals('12.95', $price->getValue());
182
+		$this->assertEquals('1.99', $price->getCosts());
183 183
 	}
184 184
 
185 185
 
186 186
 	public function testGetServicePriceCache()
187 187
 	{
188
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
189
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
188
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
189
+		$basket = $orderManager->getSubManager('base')->createItem();
190 190
 
191
-		$services = $this->object->getServices( 'delivery', $basket );
191
+		$services = $this->object->getServices('delivery', $basket);
192 192
 
193
-		if( ( $service = reset( $services ) ) === false ) {
194
-			throw new \RuntimeException( 'No service item found' );
193
+		if (($service = reset($services)) === false) {
194
+			throw new \RuntimeException('No service item found');
195 195
 		}
196 196
 
197
-		$price = $this->object->getServicePrice( 'delivery', $service->getId(), $basket );
197
+		$price = $this->object->getServicePrice('delivery', $service->getId(), $basket);
198 198
 
199
-		$this->assertEquals( '12.95', $price->getValue() );
200
-		$this->assertEquals( '1.99', $price->getCosts() );
199
+		$this->assertEquals('12.95', $price->getValue());
200
+		$this->assertEquals('1.99', $price->getCosts());
201 201
 	}
202 202
 
203 203
 
204 204
 	public function testGetServicePriceNoItems()
205 205
 	{
206
-		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
207
-		$basket = $orderManager->getSubManager( 'base' )->createItem();
206
+		$orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext());
207
+		$basket = $orderManager->getSubManager('base')->createItem();
208 208
 
209
-		$this->setExpectedException( '\\Aimeos\\MShop\\Exception' );
210
-		$this->object->getServicePrice( 'invalid', -1, $basket );
209
+		$this->setExpectedException('\\Aimeos\\MShop\\Exception');
210
+		$this->object->getServicePrice('invalid', -1, $basket);
211 211
 	}
212 212
 
213 213
 
214 214
 	public function testCheckServiceAttributes()
215 215
 	{
216 216
 		$service = $this->getServiceItem();
217
-		$attributes = $this->object->checkServiceAttributes( 'delivery', $service->getId(), [] );
217
+		$attributes = $this->object->checkServiceAttributes('delivery', $service->getId(), []);
218 218
 
219
-		$this->assertEquals( [], $attributes );
219
+		$this->assertEquals([], $attributes);
220 220
 	}
221 221
 
222 222
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 	 */
226 226
 	protected function getServiceItem()
227 227
 	{
228
-		$manager = \Aimeos\MShop\Service\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
229
-		return $manager->findItem( 'unitcode' );
228
+		$manager = \Aimeos\MShop\Service\Manager\Factory::createManager(\TestHelperFrontend::getContext());
229
+		return $manager->findItem('unitcode');
230 230
 	}
231 231
 }
Please login to merge, or discard this patch.
frontend/tests/Controller/Frontend/Basket/Decorator/BundleTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,40 +18,40 @@
 block discarded – undo
18 18
 	protected function setUp()
19 19
 	{
20 20
 		$this->context = \TestHelperFrontend::getContext();
21
-		$object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
22
-		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Bundle( $object, $this->context );
21
+		$object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
22
+		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Bundle($object, $this->context);
23 23
 	}
24 24
 
25 25
 
26 26
 	protected function tearDown()
27 27
 	{
28 28
 		$this->object->clear();
29
-		$this->context->getSession()->set( 'aimeos', [] );
29
+		$this->context->getSession()->set('aimeos', []);
30 30
 
31
-		unset( $this->object );
31
+		unset($this->object);
32 32
 	}
33 33
 
34 34
 
35 35
 	public function testAddProductBundle()
36 36
 	{
37
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:BUNDLE' );
37
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:BUNDLE');
38 38
 
39
-		$this->object->addProduct( $item->getId(), 1 );
39
+		$this->object->addProduct($item->getId(), 1);
40 40
 
41
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
42
-		$this->assertEquals( 'U:BUNDLE', $this->object->get()->getProduct( 0 )->getProductCode() );
43
-		$this->assertEquals( 2, count( $this->object->get()->getProduct( 0 )->getProducts() ) );
41
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
42
+		$this->assertEquals('U:BUNDLE', $this->object->get()->getProduct(0)->getProductCode());
43
+		$this->assertEquals(2, count($this->object->get()->getProduct(0)->getProducts()));
44 44
 	}
45 45
 
46 46
 
47 47
 	public function testAddProductNoBundle()
48 48
 	{
49
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' );
49
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC');
50 50
 
51
-		$this->object->addProduct( $item->getId(), 1 );
51
+		$this->object->addProduct($item->getId(), 1);
52 52
 
53
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
54
-		$this->assertEquals( 'CNC', $this->object->get()->getProduct( 0 )->getProductCode() );
55
-		$this->assertEquals( 0, count( $this->object->get()->getProduct( 0 )->getProducts() ) );
53
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
54
+		$this->assertEquals('CNC', $this->object->get()->getProduct(0)->getProductCode());
55
+		$this->assertEquals(0, count($this->object->get()->getProduct(0)->getProducts()));
56 56
 	}
57 57
 }
Please login to merge, or discard this patch.
frontend/tests/Controller/Frontend/Basket/Decorator/CategoryTest.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -18,35 +18,35 @@
 block discarded – undo
18 18
 	protected function setUp()
19 19
 	{
20 20
 		$this->context = \TestHelperFrontend::getContext();
21
-		$object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
22
-		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Category( $object, $this->context );
21
+		$object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
22
+		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Category($object, $this->context);
23 23
 	}
24 24
 
25 25
 
26 26
 	protected function tearDown()
27 27
 	{
28 28
 		$this->object->clear();
29
-		$this->context->getSession()->set( 'aimeos', [] );
29
+		$this->context->getSession()->set('aimeos', []);
30 30
 
31
-		unset( $this->object );
31
+		unset($this->object);
32 32
 	}
33 33
 
34 34
 
35 35
 	public function testAddProductWithCategory()
36 36
 	{
37
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product' );
38
-		$item = $manager->findItem( 'CNE' );
37
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'product');
38
+		$item = $manager->findItem('CNE');
39 39
 
40
-		$this->object->addProduct( $item->getId(), 5 );
40
+		$this->object->addProduct($item->getId(), 5);
41 41
 	}
42 42
 
43 43
 
44 44
 	public function testAddProductNoCategory()
45 45
 	{
46
-		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product' );
47
-		$item = $manager->findItem( 'ABCD' );
46
+		$manager = \Aimeos\MShop\Factory::createManager($this->context, 'product');
47
+		$item = $manager->findItem('ABCD');
48 48
 
49
-		$this->setExpectedException( '\Aimeos\Controller\Frontend\Basket\Exception' );
50
-		$this->object->addProduct( $item->getId(), 5 );
49
+		$this->setExpectedException('\Aimeos\Controller\Frontend\Basket\Exception');
50
+		$this->object->addProduct($item->getId(), 5);
51 51
 	}
52 52
 }
Please login to merge, or discard this patch.
frontend/tests/Controller/Frontend/Basket/Decorator/SelectTest.php 1 patch
Spacing   +86 added lines, -86 removed lines patch added patch discarded remove patch
@@ -19,217 +19,217 @@
 block discarded – undo
19 19
 	protected function setUp()
20 20
 	{
21 21
 		$this->context = \TestHelperFrontend::getContext();
22
-		$this->testItem = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TESTP' );
22
+		$this->testItem = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TESTP');
23 23
 
24
-		$object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
25
-		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Select( $object, $this->context );
24
+		$object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
25
+		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Select($object, $this->context);
26 26
 	}
27 27
 
28 28
 
29 29
 	protected function tearDown()
30 30
 	{
31 31
 		$this->object->clear();
32
-		$this->context->getSession()->set( 'aimeos', [] );
32
+		$this->context->getSession()->set('aimeos', []);
33 33
 
34
-		unset( $this->object );
34
+		unset($this->object);
35 35
 	}
36 36
 
37 37
 
38 38
 	public function testAddDeleteProduct()
39 39
 	{
40 40
 		$basket = $this->object->get();
41
-		$this->object->addProduct( $this->testItem->getId(), 2 );
41
+		$this->object->addProduct($this->testItem->getId(), 2);
42 42
 
43
-		$this->assertEquals( 1, count( $basket->getProducts() ) );
44
-		$this->assertEquals( 2, $basket->getProduct( 0 )->getQuantity() );
45
-		$this->assertEquals( 'U:TESTPSUB01', $basket->getProduct( 0 )->getProductCode() );
43
+		$this->assertEquals(1, count($basket->getProducts()));
44
+		$this->assertEquals(2, $basket->getProduct(0)->getQuantity());
45
+		$this->assertEquals('U:TESTPSUB01', $basket->getProduct(0)->getProductCode());
46 46
 	}
47 47
 
48 48
 
49 49
 	public function testAddProductNoSelection()
50 50
 	{
51
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' );
51
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC');
52 52
 
53
-		$this->object->addProduct( $item->getId(), 1 );
53
+		$this->object->addProduct($item->getId(), 1);
54 54
 
55
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
56
-		$this->assertEquals( 'CNC', $this->object->get()->getProduct( 0 )->getProductCode() );
57
-		$this->assertEquals( 0, count( $this->object->get()->getProduct( 0 )->getProducts() ) );
55
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
56
+		$this->assertEquals('CNC', $this->object->get()->getProduct(0)->getProductCode());
57
+		$this->assertEquals(0, count($this->object->get()->getProduct(0)->getProducts()));
58 58
 	}
59 59
 
60 60
 
61 61
 	public function testAddProductVariant()
62 62
 	{
63
-		$attributeManager = \Aimeos\MShop\Attribute\Manager\Factory::createManager( \TestHelperFrontend::getContext() );
63
+		$attributeManager = \Aimeos\MShop\Attribute\Manager\Factory::createManager(\TestHelperFrontend::getContext());
64 64
 
65 65
 		$search = $attributeManager->createSearch();
66
-		$search->setConditions( $search->compare( '==', 'attribute.code', array( 'xs', 'white' ) ) );
66
+		$search->setConditions($search->compare('==', 'attribute.code', array('xs', 'white')));
67 67
 
68
-		$attributes = $attributeManager->searchItems( $search );
68
+		$attributes = $attributeManager->searchItems($search);
69 69
 
70
-		if( count( $attributes ) === 0 ) {
71
-			throw new \RuntimeException( 'Attributes not found' );
70
+		if (count($attributes) === 0) {
71
+			throw new \RuntimeException('Attributes not found');
72 72
 		}
73 73
 
74 74
 
75
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' );
75
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC');
76 76
 
77
-		$this->object->addProduct( $item->getId(), 1, [], array_keys( $attributes ), [], [], [], 'default' );
77
+		$this->object->addProduct($item->getId(), 1, [], array_keys($attributes), [], [], [], 'default');
78 78
 
79
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
80
-		$this->assertEquals( 'CNC', $this->object->get()->getProduct( 0 )->getProductCode() );
79
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
80
+		$this->assertEquals('CNC', $this->object->get()->getProduct(0)->getProductCode());
81 81
 	}
82 82
 
83 83
 
84 84
 	public function testAddProductVariantIncomplete()
85 85
 	{
86
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
86
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
87 87
 
88 88
 		$search = $attributeManager->createSearch();
89 89
 		$expr = array(
90
-			$search->compare( '==', 'attribute.domain', 'product' ),
91
-			$search->compare( '==', 'attribute.code', '30' ),
92
-			$search->compare( '==', 'attribute.type.code', 'length' ),
90
+			$search->compare('==', 'attribute.domain', 'product'),
91
+			$search->compare('==', 'attribute.code', '30'),
92
+			$search->compare('==', 'attribute.type.code', 'length'),
93 93
 		);
94
-		$search->setConditions( $search->combine( '&&', $expr ) );
94
+		$search->setConditions($search->combine('&&', $expr));
95 95
 
96
-		$attributes = $attributeManager->searchItems( $search );
96
+		$attributes = $attributeManager->searchItems($search);
97 97
 
98
-		if( count( $attributes ) === 0 ) {
99
-			throw new \RuntimeException( 'Attributes not found' );
98
+		if (count($attributes) === 0) {
99
+			throw new \RuntimeException('Attributes not found');
100 100
 		}
101 101
 
102 102
 
103
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TEST' );
103
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TEST');
104 104
 
105
-		$this->object->addProduct( $item->getId(), 1, [], array_keys( $attributes ) );
105
+		$this->object->addProduct($item->getId(), 1, [], array_keys($attributes));
106 106
 
107
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
108
-		$this->assertEquals( 'U:TESTSUB02', $this->object->get()->getProduct( 0 )->getProductCode() );
109
-		$this->assertEquals( 2, count( $this->object->get()->getProduct( 0 )->getAttributes() ) );
107
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
108
+		$this->assertEquals('U:TESTSUB02', $this->object->get()->getProduct(0)->getProductCode());
109
+		$this->assertEquals(2, count($this->object->get()->getProduct(0)->getAttributes()));
110 110
 	}
111 111
 
112 112
 
113 113
 	public function testAddProductVariantNonUnique()
114 114
 	{
115
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
115
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
116 116
 
117 117
 		$search = $attributeManager->createSearch();
118 118
 		$expr = array(
119
-			$search->compare( '==', 'attribute.domain', 'product' ),
120
-			$search->compare( '==', 'attribute.code', '30' ),
121
-			$search->compare( '==', 'attribute.type.code', 'width' ),
119
+			$search->compare('==', 'attribute.domain', 'product'),
120
+			$search->compare('==', 'attribute.code', '30'),
121
+			$search->compare('==', 'attribute.type.code', 'width'),
122 122
 		);
123
-		$search->setConditions( $search->combine( '&&', $expr ) );
123
+		$search->setConditions($search->combine('&&', $expr));
124 124
 
125
-		$attributes = $attributeManager->searchItems( $search );
125
+		$attributes = $attributeManager->searchItems($search);
126 126
 
127
-		if( count( $attributes ) === 0 ) {
128
-			throw new \RuntimeException( 'Attributes not found' );
127
+		if (count($attributes) === 0) {
128
+			throw new \RuntimeException('Attributes not found');
129 129
 		}
130 130
 
131 131
 
132
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TEST' );
132
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TEST');
133 133
 
134
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
135
-		$this->object->addProduct( $item->getId(), 1, [], array_keys( $attributes ) );
134
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
135
+		$this->object->addProduct($item->getId(), 1, [], array_keys($attributes));
136 136
 	}
137 137
 
138 138
 
139 139
 	public function testAddProductVariantNotRequired()
140 140
 	{
141
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
141
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
142 142
 
143 143
 		$search = $attributeManager->createSearch();
144
-		$search->setConditions( $search->compare( '==', 'attribute.code', 'xs' ) );
144
+		$search->setConditions($search->compare('==', 'attribute.code', 'xs'));
145 145
 
146
-		$attributes = $attributeManager->searchItems( $search );
146
+		$attributes = $attributeManager->searchItems($search);
147 147
 
148
-		if( count( $attributes ) === 0 ) {
149
-			throw new \RuntimeException( 'Attribute not found' );
148
+		if (count($attributes) === 0) {
149
+			throw new \RuntimeException('Attribute not found');
150 150
 		}
151 151
 
152
-		$options = array( 'variant' => false );
152
+		$options = array('variant' => false);
153 153
 
154
-		$this->object->addProduct( $this->testItem->getId(), 1, $options, array_keys( $attributes ) );
154
+		$this->object->addProduct($this->testItem->getId(), 1, $options, array_keys($attributes));
155 155
 
156
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
157
-		$this->assertEquals( 'U:TESTP', $this->object->get()->getProduct( 0 )->getProductCode() );
156
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
157
+		$this->assertEquals('U:TESTP', $this->object->get()->getProduct(0)->getProductCode());
158 158
 	}
159 159
 
160 160
 
161 161
 	public function testAddProductEmptySelectionException()
162 162
 	{
163
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:noSel' );
163
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:noSel');
164 164
 
165
-		$this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' );
166
-		$this->object->addProduct( $item->getId(), 1 );
165
+		$this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception');
166
+		$this->object->addProduct($item->getId(), 1);
167 167
 	}
168 168
 
169 169
 
170 170
 	public function testAddProductSelectionWithPricelessItem()
171 171
 	{
172
-		$this->object->addProduct( $this->testItem->getId(), 1 );
172
+		$this->object->addProduct($this->testItem->getId(), 1);
173 173
 
174
-		$this->assertEquals( 'U:TESTPSUB01', $this->object->get()->getProduct( 0 )->getProductCode() );
174
+		$this->assertEquals('U:TESTPSUB01', $this->object->get()->getProduct(0)->getProductCode());
175 175
 	}
176 176
 
177 177
 
178 178
 	public function testAddProductConfigAttribute()
179 179
 	{
180
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
180
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
181 181
 
182 182
 		$search = $attributeManager->createSearch();
183
-		$search->setConditions( $search->compare( '==', 'attribute.code', 'xs' ) );
183
+		$search->setConditions($search->compare('==', 'attribute.code', 'xs'));
184 184
 
185
-		$attributes = $attributeManager->searchItems( $search );
185
+		$attributes = $attributeManager->searchItems($search);
186 186
 
187
-		if( empty( $attributes ) ) {
188
-			throw new \RuntimeException( 'Attribute not found' );
187
+		if (empty($attributes)) {
188
+			throw new \RuntimeException('Attribute not found');
189 189
 		}
190 190
 
191
-		$this->object->addProduct( $this->testItem->getId(), 1, [], [], array_keys( $attributes ) );
191
+		$this->object->addProduct($this->testItem->getId(), 1, [], [], array_keys($attributes));
192 192
 		$basket = $this->object->get();
193 193
 
194
-		$this->assertEquals( 1, count( $basket->getProducts() ) );
195
-		$this->assertEquals( 'U:TESTPSUB01', $basket->getProduct( 0 )->getProductCode() );
196
-		$this->assertEquals( 'xs', $basket->getProduct( 0 )->getAttribute( 'size', 'config' ) );
194
+		$this->assertEquals(1, count($basket->getProducts()));
195
+		$this->assertEquals('U:TESTPSUB01', $basket->getProduct(0)->getProductCode());
196
+		$this->assertEquals('xs', $basket->getProduct(0)->getAttribute('size', 'config'));
197 197
 	}
198 198
 
199 199
 
200 200
 	public function testAddProductHiddenAttribute()
201 201
 	{
202
-		$attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' );
202
+		$attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute');
203 203
 
204 204
 		$search = $attributeManager->createSearch();
205 205
 		$expr = array(
206
-			$search->compare( '==', 'attribute.code', '29' ),
207
-			$search->compare( '==', 'attribute.type.code', 'width' ),
206
+			$search->compare('==', 'attribute.code', '29'),
207
+			$search->compare('==', 'attribute.type.code', 'width'),
208 208
 		);
209
-		$search->setConditions( $search->combine( '&&', $expr ) );
209
+		$search->setConditions($search->combine('&&', $expr));
210 210
 
211
-		$attributes = $attributeManager->searchItems( $search );
211
+		$attributes = $attributeManager->searchItems($search);
212 212
 
213
-		if( empty( $attributes ) ) {
214
-			throw new \RuntimeException( 'Attribute not found' );
213
+		if (empty($attributes)) {
214
+			throw new \RuntimeException('Attribute not found');
215 215
 		}
216 216
 
217
-		$this->object->addProduct( $this->testItem->getId(), 1, [], [], [], array_keys( $attributes ) );
217
+		$this->object->addProduct($this->testItem->getId(), 1, [], [], [], array_keys($attributes));
218 218
 
219 219
 		$basket = $this->object->get();
220
-		$this->assertEquals( 1, count( $basket->getProducts() ) );
220
+		$this->assertEquals(1, count($basket->getProducts()));
221 221
 
222
-		$product = $basket->getProduct( 0 );
223
-		$this->assertEquals( 'U:TESTPSUB01', $product->getProductCode() );
222
+		$product = $basket->getProduct(0);
223
+		$this->assertEquals('U:TESTPSUB01', $product->getProductCode());
224 224
 
225 225
 		$attributes = $product->getAttributes();
226
-		$this->assertEquals( 1, count( $attributes ) );
226
+		$this->assertEquals(1, count($attributes));
227 227
 
228
-		if( ( $attribute = reset( $attributes ) ) === false ) {
229
-			throw new \RuntimeException( 'No attribute' );
228
+		if (($attribute = reset($attributes)) === false) {
229
+			throw new \RuntimeException('No attribute');
230 230
 		}
231 231
 
232
-		$this->assertEquals( 'hidden', $attribute->getType() );
233
-		$this->assertEquals( '29', $product->getAttribute( 'width', 'hidden' ) );
232
+		$this->assertEquals('hidden', $attribute->getType());
233
+		$this->assertEquals('29', $product->getAttribute('width', 'hidden'));
234 234
 	}
235 235
 }
Please login to merge, or discard this patch.