Completed
Push — master ( 30e75e...337e63 )
by Aimeos
07:00
created
admin/jsonadm/tests/Admin/JsonAdm/Customer/StandardTest.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 		$templatePaths = \TestHelperJadm::getJsonadmPaths();
23 23
 		$this->view = $this->context->getView();
24 24
 
25
-		$this->object = new \Aimeos\Admin\JsonAdm\Customer\Standard( $this->context, $this->view, $templatePaths, 'customer' );
25
+		$this->object = new \Aimeos\Admin\JsonAdm\Customer\Standard($this->context, $this->view, $templatePaths, 'customer');
26 26
 	}
27 27
 
28 28
 
@@ -30,28 +30,28 @@  discard block
 block discarded – undo
30 30
 	{
31 31
 		$params = array(
32 32
 			'filter' => array(
33
-				'==' => array( 'customer.code' => 'UTC001' )
33
+				'==' => array('customer.code' => 'UTC001')
34 34
 			),
35 35
 			'include' => 'text,customer/address'
36 36
 		);
37
-		$helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params );
38
-		$this->view->addHelper( 'param', $helper );
37
+		$helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params);
38
+		$this->view->addHelper('param', $helper);
39 39
 
40
-		$response = $this->object->get( $this->view->request(), $this->view->response() );
41
-		$result = json_decode( (string) $response->getBody(), true );
40
+		$response = $this->object->get($this->view->request(), $this->view->response());
41
+		$result = json_decode((string) $response->getBody(), true);
42 42
 
43 43
 
44
-		$this->assertEquals( 200, $response->getStatusCode() );
45
-		$this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) );
44
+		$this->assertEquals(200, $response->getStatusCode());
45
+		$this->assertEquals(1, count($response->getHeader('Content-Type')));
46 46
 
47
-		$this->assertEquals( 1, $result['meta']['total'] );
48
-		$this->assertEquals( 1, count( $result['data'] ) );
49
-		$this->assertEquals( 'customer', $result['data'][0]['type'] );
50
-		$this->assertEquals( 1, count( $result['data'][0]['relationships']['text'] ) );
51
-		$this->assertEquals( 1, count( $result['data'][0]['relationships']['customer/address'] ) );
52
-		$this->assertEquals( 2, count( $result['included'] ) );
47
+		$this->assertEquals(1, $result['meta']['total']);
48
+		$this->assertEquals(1, count($result['data']));
49
+		$this->assertEquals('customer', $result['data'][0]['type']);
50
+		$this->assertEquals(1, count($result['data'][0]['relationships']['text']));
51
+		$this->assertEquals(1, count($result['data'][0]['relationships']['customer/address']));
52
+		$this->assertEquals(2, count($result['included']));
53 53
 
54
-		$this->assertArrayNotHasKey( 'errors', $result );
54
+		$this->assertArrayNotHasKey('errors', $result);
55 55
 	}
56 56
 
57 57
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	{
60 60
 		$params = array(
61 61
 			'filter' => array(
62
-				'=~' => array( 'customer.code' => 'UTC' )
62
+				'=~' => array('customer.code' => 'UTC')
63 63
 			),
64 64
 			'fields' => array(
65 65
 				'customer' => 'customer.id,customer.label'
@@ -67,23 +67,23 @@  discard block
 block discarded – undo
67 67
 			'sort' => 'customer.id',
68 68
 			'include' => 'customer/address'
69 69
 		);
70
-		$helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params );
71
-		$this->view->addHelper( 'param', $helper );
70
+		$helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params);
71
+		$this->view->addHelper('param', $helper);
72 72
 
73
-		$response = $this->object->get( $this->view->request(), $this->view->response() );
74
-		$result = json_decode( (string) $response->getBody(), true );
73
+		$response = $this->object->get($this->view->request(), $this->view->response());
74
+		$result = json_decode((string) $response->getBody(), true);
75 75
 
76 76
 
77
-		$this->assertEquals( 200, $response->getStatusCode() );
78
-		$this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) );
77
+		$this->assertEquals(200, $response->getStatusCode());
78
+		$this->assertEquals(1, count($response->getHeader('Content-Type')));
79 79
 
80
-		$this->assertEquals( 3, $result['meta']['total'] );
81
-		$this->assertEquals( 3, count( $result['data'] ) );
82
-		$this->assertEquals( 'customer', $result['data'][0]['type'] );
83
-		$this->assertEquals( 2, count( $result['data'][0]['attributes'] ) );
84
-		$this->assertEquals( 1, count( $result['data'][0]['relationships']['customer/address'] ) );
85
-		$this->assertEquals( 4, count( $result['included'] ) );
80
+		$this->assertEquals(3, $result['meta']['total']);
81
+		$this->assertEquals(3, count($result['data']));
82
+		$this->assertEquals('customer', $result['data'][0]['type']);
83
+		$this->assertEquals(2, count($result['data'][0]['attributes']));
84
+		$this->assertEquals(1, count($result['data'][0]['relationships']['customer/address']));
85
+		$this->assertEquals(4, count($result['included']));
86 86
 
87
-		$this->assertArrayNotHasKey( 'errors', $result );
87
+		$this->assertArrayNotHasKey('errors', $result);
88 88
 	}
89 89
 }
90 90
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/tests/Admin/JsonAdm/Text/StandardTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 		$templatePaths = \TestHelperJadm::getJsonadmPaths();
23 23
 		$this->view = $this->context->getView();
24 24
 
25
-		$this->object = new \Aimeos\Admin\JsonAdm\Text\Standard( $this->context, $this->view, $templatePaths, 'text' );
25
+		$this->object = new \Aimeos\Admin\JsonAdm\Text\Standard($this->context, $this->view, $templatePaths, 'text');
26 26
 	}
27 27
 
28 28
 
@@ -30,26 +30,26 @@  discard block
 block discarded – undo
30 30
 	{
31 31
 		$params = array(
32 32
 			'filter' => array(
33
-				'==' => array( 'text.label' => 'misc_long_desc' )
33
+				'==' => array('text.label' => 'misc_long_desc')
34 34
 			),
35 35
 			'include' => 'media'
36 36
 		);
37
-		$helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params );
38
-		$this->view->addHelper( 'param', $helper );
37
+		$helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params);
38
+		$this->view->addHelper('param', $helper);
39 39
 
40
-		$response = $this->object->get( $this->view->request(), $this->view->response() );
41
-		$result = json_decode( (string) $response->getBody(), true );
40
+		$response = $this->object->get($this->view->request(), $this->view->response());
41
+		$result = json_decode((string) $response->getBody(), true);
42 42
 
43 43
 
44
-		$this->assertEquals( 200, $response->getStatusCode() );
45
-		$this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) );
44
+		$this->assertEquals(200, $response->getStatusCode());
45
+		$this->assertEquals(1, count($response->getHeader('Content-Type')));
46 46
 
47
-		$this->assertEquals( 1, $result['meta']['total'] );
48
-		$this->assertEquals( 1, count( $result['data'] ) );
49
-		$this->assertEquals( 'text', $result['data'][0]['type'] );
50
-		$this->assertEquals( 4, count( $result['data'][0]['relationships']['media'] ) );
51
-		$this->assertEquals( 4, count( $result['included'] ) );
47
+		$this->assertEquals(1, $result['meta']['total']);
48
+		$this->assertEquals(1, count($result['data']));
49
+		$this->assertEquals('text', $result['data'][0]['type']);
50
+		$this->assertEquals(4, count($result['data'][0]['relationships']['media']));
51
+		$this->assertEquals(4, count($result['included']));
52 52
 
53
-		$this->assertArrayNotHasKey( 'errors', $result );
53
+		$this->assertArrayNotHasKey('errors', $result);
54 54
 	}
55 55
 }
56 56
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/templates/patch-default.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 {
2
-<?php if( isset( $this->errors ) ) : ?>
3
-	"errors": <?php echo $this->partial( $this->config( 'admin/jsonadm/partials/template-errors', 'partials/errors-standard.php' ), array( 'errors' => $this->errors ) ); ?>,
4
-<?php elseif( isset( $this->data ) ) : ?>
5
-	"data": <?php echo $this->partial( $this->config( 'admin/jsonadm/partials/template-data', 'partials/data-standard.php' ), array( 'data' => $this->get( 'data' ) ) ); ?>,
2
+<?php if (isset($this->errors)) : ?>
3
+	"errors": <?php echo $this->partial($this->config('admin/jsonadm/partials/template-errors', 'partials/errors-standard.php'), array('errors' => $this->errors)); ?>,
4
+<?php elseif (isset($this->data)) : ?>
5
+	"data": <?php echo $this->partial($this->config('admin/jsonadm/partials/template-data', 'partials/data-standard.php'), array('data' => $this->get('data'))); ?>,
6 6
 <?php endif; ?>
7 7
 
8 8
 	"meta": {
9
-		"total": <?php echo $this->get( 'total', 0 ); ?>
9
+		"total": <?php echo $this->get('total', 0); ?>
10 10
 
11 11
 	}
12 12
 }
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Common/Iface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
28 28
 	 * @param array $templatePaths List of file system paths where the templates are stored
29 29
 	 * @param string $path Name of the client separated by slashes, e.g "product/stock"
30 30
 	 */
31
-	public function __construct( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view,
32
-		array $templatePaths, $path );
31
+	public function __construct(\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view,
32
+		array $templatePaths, $path);
33 33
 }
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Common/Factory/Iface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,5 +28,5 @@
 block discarded – undo
28 28
 	 * @param string|null $name Name of the client implementation ("Standard" if null)
29 29
 	 * @return \Aimeos\Admin\JsonAdm\Iface Client Interface
30 30
 	 */
31
-	public static function createClient( \Aimeos\MShop\Context\Item\Iface $context, array $templatePaths, $path, $name = null );
31
+	public static function createClient(\Aimeos\MShop\Context\Item\Iface $context, array $templatePaths, $path, $name = null);
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Common/Decorator/Iface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
 	 * @param array $templatePaths List of file system paths where the templates are stored
30 30
 	 * @param string $path Name of the client separated by slashes, e.g "product/stock"
31 31
 	 */
32
-	public function __construct( \Aimeos\Admin\JsonAdm\Iface $client,
33
-		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view, array $templatePaths, $path );
32
+	public function __construct(\Aimeos\Admin\JsonAdm\Iface $client,
33
+		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view, array $templatePaths, $path);
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Iface.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
30 30
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
31 31
 	 */
32
-	public function delete( ServerRequestInterface $request, ResponseInterface $response );
32
+	public function delete(ServerRequestInterface $request, ResponseInterface $response);
33 33
 
34 34
 
35 35
 	/**
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
40 40
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
41 41
 	 */
42
-	public function get( ServerRequestInterface $request, ResponseInterface $response );
42
+	public function get(ServerRequestInterface $request, ResponseInterface $response);
43 43
 
44 44
 
45 45
 	/**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
50 50
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
51 51
 	 */
52
-	public function patch( ServerRequestInterface $request, ResponseInterface $response );
52
+	public function patch(ServerRequestInterface $request, ResponseInterface $response);
53 53
 
54 54
 
55 55
 	/**
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
60 60
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
61 61
 	 */
62
-	public function post( ServerRequestInterface $request, ResponseInterface $response );
62
+	public function post(ServerRequestInterface $request, ResponseInterface $response);
63 63
 
64 64
 
65 65
 	/**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
70 70
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
71 71
 	 */
72
-	public function put( ServerRequestInterface $request, ResponseInterface $response );
72
+	public function put(ServerRequestInterface $request, ResponseInterface $response);
73 73
 
74 74
 
75 75
 	/**
@@ -80,5 +80,5 @@  discard block
 block discarded – undo
80 80
 	 * @param string|null $prefix Form parameter prefix when nesting parameters is required
81 81
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
82 82
 	 */
83
-	public function options( ServerRequestInterface $request, ResponseInterface $response, $prefix = null );
83
+	public function options(ServerRequestInterface $request, ResponseInterface $response, $prefix = null);
84 84
 }
Please login to merge, or discard this patch.
admin/jsonadm/tests/Admin/JsonAdm/Price/StandardTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 		$templatePaths = \TestHelperJadm::getJsonadmPaths();
23 23
 		$this->view = $this->context->getView();
24 24
 
25
-		$this->object = new \Aimeos\Admin\JsonAdm\Price\Standard( $this->context, $this->view, $templatePaths, 'price' );
25
+		$this->object = new \Aimeos\Admin\JsonAdm\Price\Standard($this->context, $this->view, $templatePaths, 'price');
26 26
 	}
27 27
 
28 28
 
@@ -30,26 +30,26 @@  discard block
 block discarded – undo
30 30
 	{
31 31
 		$params = array(
32 32
 			'filter' => array(
33
-				'==' => array( 'price.value' => '12.95' )
33
+				'==' => array('price.value' => '12.95')
34 34
 			),
35 35
 			'include' => 'attribute'
36 36
 		);
37
-		$helper = new \Aimeos\MW\View\Helper\Param\Standard( $this->view, $params );
38
-		$this->view->addHelper( 'param', $helper );
37
+		$helper = new \Aimeos\MW\View\Helper\Param\Standard($this->view, $params);
38
+		$this->view->addHelper('param', $helper);
39 39
 
40
-		$response = $this->object->get( $this->view->request(), $this->view->response() );
41
-		$result = json_decode( (string) $response->getBody(), true );
40
+		$response = $this->object->get($this->view->request(), $this->view->response());
41
+		$result = json_decode((string) $response->getBody(), true);
42 42
 
43 43
 
44
-		$this->assertEquals( 200, $response->getStatusCode() );
45
-		$this->assertEquals( 1, count( $response->getHeader( 'Content-Type' ) ) );
44
+		$this->assertEquals(200, $response->getStatusCode());
45
+		$this->assertEquals(1, count($response->getHeader('Content-Type')));
46 46
 
47
-		$this->assertEquals( 2, $result['meta']['total'] );
48
-		$this->assertEquals( 2, count( $result['data'] ) );
49
-		$this->assertEquals( 'price', $result['data'][0]['type'] );
50
-		$this->assertEquals( 0, count( $result['data'][0]['relationships'] ) );
51
-		$this->assertEquals( 0, count( $result['included'] ) );
47
+		$this->assertEquals(2, $result['meta']['total']);
48
+		$this->assertEquals(2, count($result['data']));
49
+		$this->assertEquals('price', $result['data'][0]['type']);
50
+		$this->assertEquals(0, count($result['data'][0]['relationships']));
51
+		$this->assertEquals(0, count($result['included']));
52 52
 
53
-		$this->assertArrayNotHasKey( 'errors', $result );
53
+		$this->assertArrayNotHasKey('errors', $result);
54 54
 	}
55 55
 }
56 56
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Common/Decorator/Base.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@  discard block
 block discarded – undo
36 36
 	 * @param array $templatePaths List of file system paths where the templates are stored
37 37
 	 * @param string $path Name of the client separated by slashes, e.g "product/property"
38 38
 	 */
39
-	public function __construct( \Aimeos\Admin\JsonAdm\Iface $client,
40
-		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view, array $templatePaths, $path )
39
+	public function __construct(\Aimeos\Admin\JsonAdm\Iface $client,
40
+		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view, array $templatePaths, $path)
41 41
 	{
42
-		parent::__construct( $context, $view, $templatePaths, $path );
42
+		parent::__construct($context, $view, $templatePaths, $path);
43 43
 
44 44
 		$this->client = $client;
45 45
 	}
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 	 * @return mixed Returns the value of the called method
54 54
 	 * @throws \Aimeos\Admin\JsonAdm\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->client, $name ), $param );
58
+		return @call_user_func_array(array($this->client, $name), $param);
59 59
 	}
60 60
 
61 61
 
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
67 67
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
68 68
 	 */
69
-	public function delete( ServerRequestInterface $request, ResponseInterface $response )
69
+	public function delete(ServerRequestInterface $request, ResponseInterface $response)
70 70
 	{
71
-		return $this->client->delete( $request, $response );
71
+		return $this->client->delete($request, $response);
72 72
 	}
73 73
 
74 74
 
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
80 80
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
81 81
 	 */
82
-	public function get( ServerRequestInterface $request, ResponseInterface $response )
82
+	public function get(ServerRequestInterface $request, ResponseInterface $response)
83 83
 	{
84
-		return $this->client->get( $request, $response );
84
+		return $this->client->get($request, $response);
85 85
 	}
86 86
 
87 87
 
@@ -93,9 +93,9 @@  discard block
 block discarded – undo
93 93
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
94 94
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
95 95
 	 */
96
-	public function patch( ServerRequestInterface $request, ResponseInterface $response )
96
+	public function patch(ServerRequestInterface $request, ResponseInterface $response)
97 97
 	{
98
-		return $this->client->patch( $request, $response );
98
+		return $this->client->patch($request, $response);
99 99
 	}
100 100
 
101 101
 
@@ -107,9 +107,9 @@  discard block
 block discarded – undo
107 107
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
108 108
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
109 109
 	 */
110
-	public function post( ServerRequestInterface $request, ResponseInterface $response )
110
+	public function post(ServerRequestInterface $request, ResponseInterface $response)
111 111
 	{
112
-		return $this->client->post( $request, $response );
112
+		return $this->client->post($request, $response);
113 113
 	}
114 114
 
115 115
 
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
122 122
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
123 123
 	 */
124
-	public function put( ServerRequestInterface $request, ResponseInterface $response )
124
+	public function put(ServerRequestInterface $request, ResponseInterface $response)
125 125
 	{
126
-		return $this->client->put( $request, $response );
126
+		return $this->client->put($request, $response);
127 127
 	}
128 128
 
129 129
 
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
 	 * @param string|null $prefix Form parameter prefix when nesting parameters is required
137 137
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
138 138
 	 */
139
-	public function options( ServerRequestInterface $request, ResponseInterface $response, $prefix = null )
139
+	public function options(ServerRequestInterface $request, ResponseInterface $response, $prefix = null)
140 140
 	{
141
-		return $this->client->options( $request, $response, $prefix );
141
+		return $this->client->options($request, $response, $prefix);
142 142
 	}
143 143
 
144 144
 
Please login to merge, or discard this patch.