@@ -12,7 +12,7 @@ |
||
12 | 12 | error_reporting( -1 ); |
13 | 13 | ini_set( 'display_errors', '1' ); |
14 | 14 | |
15 | -date_default_timezone_set('UTC'); |
|
15 | +date_default_timezone_set( 'UTC' ); |
|
16 | 16 | |
17 | 17 | |
18 | 18 | /* |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | public function testTransformAbsolute() |
34 | 34 | { |
35 | 35 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
36 | - ->setMethods( array( 'setCreateAbsoluteUri') )->getMock(); |
|
36 | + ->setMethods( array( 'setCreateAbsoluteUri' ) )->getMock(); |
|
37 | 37 | |
38 | 38 | $mock->expects( $this->once() )->method( 'setCreateAbsoluteUri' ) |
39 | 39 | ->with( $this->equalTo( true ) )->will( $this->returnValue( $mock ) ); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | public function testTransformChash() |
48 | 48 | { |
49 | 49 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
50 | - ->setMethods( array( 'setUseCacheHash') )->getMock(); |
|
50 | + ->setMethods( array( 'setUseCacheHash' ) )->getMock(); |
|
51 | 51 | |
52 | 52 | $mock->expects( $this->once() )->method( 'setUseCacheHash' ) |
53 | 53 | ->with( $this->equalTo( false ) )->will( $this->returnValue( $mock ) ); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | public function testTransform() |
34 | 34 | { |
35 | 35 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
36 | - ->setMethods( array( 'buildFrontendUri') )->getMock(); |
|
36 | + ->setMethods( array( 'buildFrontendUri' ) )->getMock(); |
|
37 | 37 | |
38 | 38 | $mock->expects( $this->once() )->method( 'buildFrontendUri' ); |
39 | 39 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | public function testTransformAbsolute() |
48 | 48 | { |
49 | 49 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
50 | - ->setMethods( array( 'setCreateAbsoluteUri') )->getMock(); |
|
50 | + ->setMethods( array( 'setCreateAbsoluteUri' ) )->getMock(); |
|
51 | 51 | |
52 | 52 | $mock->expects( $this->once() )->method( 'setCreateAbsoluteUri' ) |
53 | 53 | ->with( $this->equalTo( true ) )->will( $this->returnValue( $mock ) ); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | public function testTransformNocache() |
63 | 63 | { |
64 | 64 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
65 | - ->setMethods( array( 'setNoCache') )->getMock(); |
|
65 | + ->setMethods( array( 'setNoCache' ) )->getMock(); |
|
66 | 66 | |
67 | 67 | $mock->expects( $this->once() )->method( 'setNoCache' ) |
68 | 68 | ->with( $this->equalTo( true ) )->will( $this->returnValue( $mock ) ); |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | public function testTransformChash() |
78 | 78 | { |
79 | 79 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
80 | - ->setMethods( array( 'setUseCacheHash') )->getMock(); |
|
80 | + ->setMethods( array( 'setUseCacheHash' ) )->getMock(); |
|
81 | 81 | |
82 | 82 | $mock->expects( $this->once() )->method( 'setUseCacheHash' ) |
83 | 83 | ->with( $this->equalTo( true ) )->will( $this->returnValue( $mock ) ); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | public function testTransformType() |
93 | 93 | { |
94 | 94 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
95 | - ->setMethods( array( 'setTargetPageType') )->getMock(); |
|
95 | + ->setMethods( array( 'setTargetPageType' ) )->getMock(); |
|
96 | 96 | |
97 | 97 | $mock->expects( $this->once() )->method( 'setTargetPageType' ) |
98 | 98 | ->with( $this->equalTo( 123 ) )->will( $this->returnValue( $mock ) ); |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | public function testTransformFormat() |
108 | 108 | { |
109 | 109 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
110 | - ->setMethods( array( 'setFormat') )->getMock(); |
|
110 | + ->setMethods( array( 'setFormat' ) )->getMock(); |
|
111 | 111 | |
112 | 112 | $mock->expects( $this->once() )->method( 'setFormat' ) |
113 | 113 | ->with( $this->equalTo( 'xml' ) )->will( $this->returnValue( $mock ) ); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | public function testTransformEID() |
123 | 123 | { |
124 | 124 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
125 | - ->setMethods( array( 'setArguments') )->getMock(); |
|
125 | + ->setMethods( array( 'setArguments' ) )->getMock(); |
|
126 | 126 | |
127 | 127 | $param = array( 'eID' => 123, 'ai' => array( 'controller' => null, 'action' => null ) ); |
128 | 128 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | public function testTransformBackend() |
140 | 140 | { |
141 | 141 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
142 | - ->setMethods( array( 'buildBackendUri') )->getMock(); |
|
142 | + ->setMethods( array( 'buildBackendUri' ) )->getMock(); |
|
143 | 143 | |
144 | 144 | $mock->expects( $this->once() )->method( 'buildBackendUri' ); |
145 | 145 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | public function testTransformParams() |
154 | 154 | { |
155 | 155 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
156 | - ->setMethods( array( 'buildFrontendUri') )->getMock(); |
|
156 | + ->setMethods( array( 'buildFrontendUri' ) )->getMock(); |
|
157 | 157 | |
158 | 158 | $mock->expects( $this->once() )->method( 'buildFrontendUri' ); |
159 | 159 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | public function testTransformUnchangedOriginalUriBuilder() |
184 | 184 | { |
185 | 185 | $mock = $this->getMockBuilder( 'TYPO3\\CMS\\Extbase\\Mvc\\Web\\Routing\\UriBuilder' ) |
186 | - ->setMethods( array( 'reset') )->getMock(); |
|
186 | + ->setMethods( array( 'reset' ) )->getMock(); |
|
187 | 187 | |
188 | 188 | $mock->expects( $this->once() )->method( 'reset' )->will( $this->returnValue( $mock ) ); |
189 | 189 |
@@ -51,7 +51,7 @@ |
||
51 | 51 | ->will( $this->returnValue( 'test' ) ); |
52 | 52 | |
53 | 53 | $this->mock->expects( $this->once() )->method( 'get' ) |
54 | - ->will( $this->returnValue( $view) ); |
|
54 | + ->will( $this->returnValue( $view ) ); |
|
55 | 55 | |
56 | 56 | $result = $this->object->render( $v, 'filepath', array( 'key' => 'value' ) ); |
57 | 57 | $this->assertEquals( 'test', $result ); |
@@ -21,31 +21,31 @@ |
||
21 | 21 | protected function setUp() |
22 | 22 | { |
23 | 23 | $mock = new \TYPO3\CMS\Core\Authentication\AbstractUserAuthentication(); |
24 | - $this->object = new \Aimeos\MW\Session\Typo3($mock); |
|
24 | + $this->object = new \Aimeos\MW\Session\Typo3( $mock ); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | |
28 | 28 | protected function tearDown() |
29 | 29 | { |
30 | - unset($this->object); |
|
30 | + unset( $this->object ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | |
34 | 34 | public function testGet() |
35 | 35 | { |
36 | - $this->assertEquals('', $this->object->get('test')); |
|
36 | + $this->assertEquals( '', $this->object->get( 'test' ) ); |
|
37 | 37 | |
38 | - $this->object->set('test', '123456789'); |
|
39 | - $this->assertEquals('123456789', $this->object->get('test')); |
|
38 | + $this->object->set( 'test', '123456789' ); |
|
39 | + $this->assertEquals( '123456789', $this->object->get( 'test' ) ); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | |
43 | 43 | public function testSet() |
44 | 44 | { |
45 | - $this->object->set('test', '123'); |
|
45 | + $this->object->set( 'test', '123' ); |
|
46 | 46 | $this->assertEquals( '123', $this->object->get( 'test' ) ); |
47 | 47 | |
48 | - $this->object->set('test', '234'); |
|
48 | + $this->object->set( 'test', '234' ); |
|
49 | 49 | $this->assertEquals( '234', $this->object->get( 'test' ) ); |
50 | 50 | } |
51 | 51 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | */ |
33 | 33 | protected function tearDown() |
34 | 34 | { |
35 | - unset($this->object); |
|
35 | + unset( $this->object ); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | protected function tearDown() |
29 | 29 | { |
30 | - unset($this->object); |
|
30 | + unset( $this->object ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | $results = $this->object->searchItems( $search ); |
72 | 72 | |
73 | - if( ($expected = reset($results) ) === false ) |
|
73 | + if( ( $expected = reset( $results ) ) === false ) |
|
74 | 74 | { |
75 | 75 | throw new \RuntimeException( 'No property type item found.' ); |
76 | 76 | } |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | { |
93 | 93 | $search = $this->object->createSearch(); |
94 | 94 | $search->setConditions( $search->compare( '==', 'customer.property.type.editor', $this->editor ) ); |
95 | - $results = $this->object->searchItems($search); |
|
95 | + $results = $this->object->searchItems( $search ); |
|
96 | 96 | |
97 | - if( ( $item = reset($results) ) === false ) { |
|
97 | + if( ( $item = reset( $results ) ) === false ) { |
|
98 | 98 | throw new \RuntimeException( 'No type item found' ); |
99 | 99 | } |
100 | 100 | |
101 | - $item->setId(null); |
|
101 | + $item->setId( null ); |
|
102 | 102 | $item->setCode( 'unitTestSave' ); |
103 | 103 | $resultSaved = $this->object->saveItem( $item ); |
104 | 104 | $itemSaved = $this->object->getItem( $item->getId() ); |
@@ -159,24 +159,24 @@ discard block |
||
159 | 159 | $expr[] = $search->compare( '>=', 'customer.property.type.ctime', '1970-01-01 00:00:00' ); |
160 | 160 | $expr[] = $search->compare( '==', 'customer.property.type.editor', $this->editor ); |
161 | 161 | |
162 | - $search->setConditions( $search->combine('&&', $expr) ); |
|
162 | + $search->setConditions( $search->combine( '&&', $expr ) ); |
|
163 | 163 | $results = $this->object->searchItems( $search, [], $total ); |
164 | 164 | $this->assertEquals( 1, count( $results ) ); |
165 | 165 | |
166 | 166 | |
167 | 167 | $search = $this->object->createSearch(); |
168 | 168 | $conditions = array( |
169 | - $search->compare( '=~', 'customer.property.type.code', 'newsletter'), |
|
169 | + $search->compare( '=~', 'customer.property.type.code', 'newsletter' ), |
|
170 | 170 | $search->compare( '==', 'customer.property.type.editor', $this->editor ) |
171 | 171 | ); |
172 | - $search->setConditions( $search->combine('&&', $conditions ) ); |
|
173 | - $search->setSlice(0, 1); |
|
174 | - $items = $this->object->searchItems( $search, [], $total); |
|
172 | + $search->setConditions( $search->combine( '&&', $conditions ) ); |
|
173 | + $search->setSlice( 0, 1 ); |
|
174 | + $items = $this->object->searchItems( $search, [], $total ); |
|
175 | 175 | |
176 | 176 | $this->assertEquals( 1, count( $items ) ); |
177 | 177 | $this->assertEquals( 1, $total ); |
178 | 178 | |
179 | - foreach($items as $itemId => $item) { |
|
179 | + foreach( $items as $itemId => $item ) { |
|
180 | 180 | $this->assertEquals( $itemId, $item->getId() ); |
181 | 181 | } |
182 | 182 | } |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | |
185 | 185 | public function testGetSubManager() |
186 | 186 | { |
187 | - $this->setExpectedException('\\Aimeos\\MShop\\Exception'); |
|
188 | - $this->object->getSubManager('unknown'); |
|
187 | + $this->setExpectedException( '\\Aimeos\\MShop\\Exception' ); |
|
188 | + $this->object->getSubManager( 'unknown' ); |
|
189 | 189 | } |
190 | 190 | } |
@@ -95,7 +95,7 @@ |
||
95 | 95 | $server = ServerRequestFactory::normalizeServer( $server ); |
96 | 96 | $headers = ServerRequestFactory::marshalHeaders( $server ); |
97 | 97 | $uri = ServerRequestFactory::marshalUriFromServer( $server, $headers ); |
98 | - $method = ServerRequestFactory::get('REQUEST_METHOD', $server, 'GET'); |
|
98 | + $method = ServerRequestFactory::get( 'REQUEST_METHOD', $server, 'GET' ); |
|
99 | 99 | |
100 | 100 | return new ServerRequest( $server, $files, $uri, $method, 'php://input', $headers, $cookies, $query, $post ); |
101 | 101 | } |
@@ -559,14 +559,14 @@ |
||
559 | 559 | |
560 | 560 | $results = $this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level, $this->plugins ); |
561 | 561 | while( ( $row = $results->fetch() ) !== false ) { |
562 | - $map[ $row['customer.id'] ] = $row; |
|
562 | + $map[$row['customer.id']] = $row; |
|
563 | 563 | } |
564 | 564 | |
565 | 565 | $dbm->release( $conn, $dbname ); |
566 | 566 | } |
567 | 567 | catch( \Exception $e ) |
568 | 568 | { |
569 | - $dbm->release( $conn, $dbname ); |
|
569 | + $dbm->release( $conn, $dbname ); |
|
570 | 570 | throw $e; |
571 | 571 | } |
572 | 572 |
@@ -403,8 +403,7 @@ |
||
403 | 403 | * @see mshop/customer/manager/typo3/count |
404 | 404 | */ |
405 | 405 | $path = 'mshop/customer/manager/typo3/insert'; |
406 | - } |
|
407 | - else |
|
406 | + } else |
|
408 | 407 | { |
409 | 408 | /** mshop/customer/manager/typo3/update |
410 | 409 | * Updates an existing customer record in the database |