Completed
Push — master ( 30e75e...337e63 )
by Aimeos
07:00
created
admin/jsonadm/src/Admin/JsonAdm/Factory.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -33,11 +33,11 @@  discard block
 block discarded – undo
33 33
 	 * @param integer $id Context ID the objects have been created with (string of \Aimeos\MShop\Context\Item\Iface)
34 34
 	 * @param string $path Path describing the client to clear, e.g. "product/lists/type"
35 35
 	 */
36
-	static public function clear( $id = null, $path = null )
36
+	static public function clear($id = null, $path = null)
37 37
 	{
38
-		if( $id !== null )
38
+		if ($id !== null)
39 39
 		{
40
-			if( $path !== null ) {
40
+			if ($path !== null) {
41 41
 				self::$clients[$id][$path] = null;
42 42
 			} else {
43 43
 				self::$clients[$id] = [];
@@ -65,19 +65,19 @@  discard block
 block discarded – undo
65 65
 	 * @return \Aimeos\Admin\JsonAdm\Iface JSON admin instance
66 66
 	 * @throws \Aimeos\Admin\JsonAdm\Exception If the given path is invalid
67 67
 	 */
68
-	static public function createClient( \Aimeos\MShop\Context\Item\Iface $context,
69
-		array $templatePaths, $path, $name = null )
68
+	static public function createClient(\Aimeos\MShop\Context\Item\Iface $context,
69
+		array $templatePaths, $path, $name = null)
70 70
 	{
71
-		$path = strtolower( trim( $path, "/ \n\t\r\0\x0B" ) );
71
+		$path = strtolower(trim($path, "/ \n\t\r\0\x0B"));
72 72
 
73
-		if( empty( $path ) ) {
74
-			return self::createClientRoot( $context, $context->getView(), $templatePaths, $path, $name );
73
+		if (empty($path)) {
74
+			return self::createClientRoot($context, $context->getView(), $templatePaths, $path, $name);
75 75
 		}
76 76
 
77 77
 		$id = (string) $context;
78 78
 
79
-		if( self::$cache === false || !isset( self::$clients[$id][$path] ) ) {
80
-			self::$clients[$id][$path] = self::createClientNew( $context, $templatePaths, $path, $name );
79
+		if (self::$cache === false || !isset(self::$clients[$id][$path])) {
80
+			self::$clients[$id][$path] = self::createClientNew($context, $templatePaths, $path, $name);
81 81
 		}
82 82
 
83 83
 		return self::$clients[$id][$path];
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 * @param boolean $value True to enable caching, false to disable it.
91 91
 	 * @return boolean Previous cache setting
92 92
 	 */
93
-	static public function setCache( $value )
93
+	static public function setCache($value)
94 94
 	{
95 95
 		$old = self::$cache;
96 96
 		self::$cache = (boolean) $value;
@@ -109,37 +109,37 @@  discard block
 block discarded – undo
109 109
 	 * @return \Aimeos\Admin\JsonAdm\Iface JSON admin instance
110 110
 	 * @throws \Aimeos\Admin\JsonAdm\Exception If the given path is invalid
111 111
 	 */
112
-	protected static function createClientNew( \Aimeos\MShop\Context\Item\Iface $context,
113
-		array $templatePaths, $path, $name )
112
+	protected static function createClientNew(\Aimeos\MShop\Context\Item\Iface $context,
113
+		array $templatePaths, $path, $name)
114 114
 	{
115
-		$parts = explode( '/', $path );
115
+		$parts = explode('/', $path);
116 116
 
117
-		foreach( $parts as $key => $part )
117
+		foreach ($parts as $key => $part)
118 118
 		{
119
-			if( ctype_alnum( $part ) === false )
119
+			if (ctype_alnum($part) === false)
120 120
 			{
121
-				$msg = sprintf( 'Invalid client "%1$s" in "%2$s"', $part, $path );
122
-				throw new \Aimeos\Admin\JsonAdm\Exception( $msg, 400 );
121
+				$msg = sprintf('Invalid client "%1$s" in "%2$s"', $part, $path);
122
+				throw new \Aimeos\Admin\JsonAdm\Exception($msg, 400);
123 123
 			}
124 124
 
125
-			$parts[$key] = ucwords( $part );
125
+			$parts[$key] = ucwords($part);
126 126
 		}
127 127
 
128 128
 
129 129
 		$view = $context->getView();
130
-		$factory = '\\Aimeos\\Admin\\JsonAdm\\' . join( '\\', $parts ) . '\\Factory';
130
+		$factory = '\\Aimeos\\Admin\\JsonAdm\\' . join('\\', $parts) . '\\Factory';
131 131
 
132
-		if( class_exists( $factory ) === true )
132
+		if (class_exists($factory) === true)
133 133
 		{
134
-			$args = array( $context, $view, $templatePaths, $path, $name );
134
+			$args = array($context, $view, $templatePaths, $path, $name);
135 135
 
136
-			if( ( $client = @call_user_func_array( array( $factory, 'createClient' ), $args ) ) === false ) {
137
-				throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'Invalid factory "%1$s"', $factory ), 400 );
136
+			if (($client = @call_user_func_array(array($factory, 'createClient'), $args)) === false) {
137
+				throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Invalid factory "%1$s"', $factory), 400);
138 138
 			}
139 139
 		}
140 140
 		else
141 141
 		{
142
-			$client = self::createClientRoot( $context, $view, $templatePaths, $path, $name );
142
+			$client = self::createClientRoot($context, $view, $templatePaths, $path, $name);
143 143
 		}
144 144
 
145 145
 		return $client;
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
 	 * @return \Aimeos\Admin\JsonAdm\Iface JSON admin instance
158 158
 	 * @throws \Aimeos\Admin\JsonAdm\Exception If the client couldn't be created
159 159
 	 */
160
-	protected static function createClientRoot( \Aimeos\MShop\Context\Item\Iface $context,
161
-		\Aimeos\MW\View\Iface $view, array $templatePaths, $path, $name = null )
160
+	protected static function createClientRoot(\Aimeos\MShop\Context\Item\Iface $context,
161
+		\Aimeos\MW\View\Iface $view, array $templatePaths, $path, $name = null)
162 162
 	{
163 163
 		/** admin/jsonadm/name
164 164
 		 * Class name of the used JSON API client implementation
@@ -193,20 +193,20 @@  discard block
 block discarded – undo
193 193
 		 * @since 2015.12
194 194
 		 * @category Developer
195 195
 		 */
196
-		if( $name === null ) {
197
-			$name = $context->getConfig()->get( 'admin/jsonadm/name', 'Standard' );
196
+		if ($name === null) {
197
+			$name = $context->getConfig()->get('admin/jsonadm/name', 'Standard');
198 198
 		}
199 199
 
200
-		if( ctype_alnum( $name ) === false )
200
+		if (ctype_alnum($name) === false)
201 201
 		{
202
-			$classname = is_string( $name ) ? '\\Aimeos\\Admin\\JsonAdm\\' . $name : '<not a string>';
203
-			throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'Invalid class name "%1$s"', $classname ) );
202
+			$classname = is_string($name) ? '\\Aimeos\\Admin\\JsonAdm\\' . $name : '<not a string>';
203
+			throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Invalid class name "%1$s"', $classname));
204 204
 		}
205 205
 
206 206
 		$iface = '\\Aimeos\\Admin\\JsonAdm\\Iface';
207 207
 		$classname = '\\Aimeos\\Admin\\JsonAdm\\' . $name;
208 208
 
209
-		$client = self::createClientBase( $classname, $iface, $context, $view, $templatePaths, $path );
209
+		$client = self::createClientBase($classname, $iface, $context, $view, $templatePaths, $path);
210 210
 
211 211
 		/** admin/jsonadm/decorators/excludes
212 212
 		 * Excludes decorators added by the "common" option from the JSON API clients
@@ -286,6 +286,6 @@  discard block
 block discarded – undo
286 286
 		 * @see admin/jsonadm/decorators/global
287 287
 		 */
288 288
 
289
-		return self::addClientDecorators( $client, $context, $view, $templatePaths, $path );
289
+		return self::addClientDecorators($client, $context, $view, $templatePaths, $path);
290 290
 	}
291 291
 }
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Order/Base/Standard.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
111 111
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
112 112
 	 */
113
-	public function get( ServerRequestInterface $request, ResponseInterface $response )
113
+	public function get(ServerRequestInterface $request, ResponseInterface $response)
114 114
 	{
115 115
 		/** admin/jsonadm/partials/order/base/template-data
116 116
 		 * Relative path to the data partial template file for the order base client
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
 		 * @since 2016.01
128 128
 		 * @category Developer
129 129
 		 */
130
-		$this->getView()->assign( array( 'partial-data' => 'admin/jsonadm/partials/order/base/template-data' ) );
130
+		$this->getView()->assign(array('partial-data' => 'admin/jsonadm/partials/order/base/template-data'));
131 131
 
132
-		return parent::get( $request, $response );
132
+		return parent::get($request, $response);
133 133
 	}
134 134
 
135 135
 
@@ -140,21 +140,21 @@  discard block
 block discarded – undo
140 140
 	 * @param array $include List of resource types that should be fetched
141 141
 	 * @return array List of items implementing \Aimeos\MShop\Common\Item\Iface
142 142
 	 */
143
-	protected function getChildItems( array $items, array $include )
143
+	protected function getChildItems(array $items, array $include)
144 144
 	{
145 145
 		$list = [];
146
-		$ids = array_keys( $items );
147
-		$keys = array( 'order/base/address', 'order/base/coupon', 'order/base/product', 'order/base/service' );
148
-		$include = array_intersect( $include, $keys );
146
+		$ids = array_keys($items);
147
+		$keys = array('order/base/address', 'order/base/coupon', 'order/base/product', 'order/base/service');
148
+		$include = array_intersect($include, $keys);
149 149
 
150
-		foreach( $include as $type )
150
+		foreach ($include as $type)
151 151
 		{
152
-			$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $type );
152
+			$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $type);
153 153
 
154 154
 			$search = $manager->createSearch();
155
-			$search->setConditions( $search->compare( '==', str_replace( '/', '.', $type ) . '.baseid', $ids ) );
155
+			$search->setConditions($search->compare('==', str_replace('/', '.', $type) . '.baseid', $ids));
156 156
 
157
-			$list = array_merge( $list, $manager->searchItems( $search ) );
157
+			$list = array_merge($list, $manager->searchItems($search));
158 158
 		}
159 159
 
160 160
 		return $list;
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Order/Standard.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
111 111
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
112 112
 	 */
113
-	public function get( ServerRequestInterface $request, ResponseInterface $response )
113
+	public function get(ServerRequestInterface $request, ResponseInterface $response)
114 114
 	{
115 115
 		/** admin/jsonadm/partials/order/template-data
116 116
 		 * Relative path to the data partial template file for the order client
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
 		 * @since 2016.01
128 128
 		 * @category Developer
129 129
 		 */
130
-		$this->getView()->assign( array( 'partial-data' => 'admin/jsonadm/partials/order/template-data' ) );
130
+		$this->getView()->assign(array('partial-data' => 'admin/jsonadm/partials/order/template-data'));
131 131
 
132
-		return parent::get( $request, $response );
132
+		return parent::get($request, $response);
133 133
 	}
134 134
 
135 135
 
@@ -140,35 +140,35 @@  discard block
 block discarded – undo
140 140
 	 * @param array $include List of resource types that should be fetched
141 141
 	 * @return array List of items implementing \Aimeos\MShop\Common\Item\Iface
142 142
 	 */
143
-	protected function getChildItems( array $items, array $include )
143
+	protected function getChildItems(array $items, array $include)
144 144
 	{
145 145
 		$list = [];
146 146
 
147
-		if( in_array( 'order/base', $include ) )
147
+		if (in_array('order/base', $include))
148 148
 		{
149 149
 			$ids = [];
150 150
 
151
-			foreach( $items as $item ) {
151
+			foreach ($items as $item) {
152 152
 				$ids[] = $item->getBaseId();
153 153
 			}
154 154
 
155
-			$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base' );
155
+			$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base');
156 156
 
157 157
 			$search = $manager->createSearch();
158
-			$search->setConditions( $search->compare( '==', 'order.base.id', $ids ) );
158
+			$search->setConditions($search->compare('==', 'order.base.id', $ids));
159 159
 
160
-			$list = array_merge( $list, $manager->searchItems( $search ) );
160
+			$list = array_merge($list, $manager->searchItems($search));
161 161
 		}
162 162
 
163
-		if( in_array( 'order/status', $include ) )
163
+		if (in_array('order/status', $include))
164 164
 		{
165
-			$ids = array_keys( $items );
166
-			$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/status' );
165
+			$ids = array_keys($items);
166
+			$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/status');
167 167
 
168 168
 			$search = $manager->createSearch();
169
-			$search->setConditions( $search->compare( '==', 'order.status.parentid', $ids ) );
169
+			$search->setConditions($search->compare('==', 'order.status.parentid', $ids));
170 170
 
171
-			$list = array_merge( $list, $manager->searchItems( $search ) );
171
+			$list = array_merge($list, $manager->searchItems($search));
172 172
 		}
173 173
 
174 174
 		return $list;
Please login to merge, or discard this patch.
admin/jsonadm/src/Admin/JsonAdm/Standard.php 2 patches
Spacing   +136 added lines, -136 removed lines patch added patch discarded remove patch
@@ -31,38 +31,38 @@  discard block
 block discarded – undo
31 31
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
32 32
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
33 33
 	 */
34
-	public function delete( ServerRequestInterface $request, ResponseInterface $response )
34
+	public function delete(ServerRequestInterface $request, ResponseInterface $response)
35 35
 	{
36 36
 		$view = $this->getView();
37 37
 
38 38
 		try
39 39
 		{
40
-			$response = $this->deleteItems( $view, $request, $response );
40
+			$response = $this->deleteItems($view, $request, $response);
41 41
 			$status = 200;
42 42
 		}
43
-		catch( \Aimeos\Admin\JsonAdm\Exception $e )
43
+		catch (\Aimeos\Admin\JsonAdm\Exception $e)
44 44
 		{
45 45
 			$status = $e->getCode();
46
-			$view->errors = array( array(
47
-				'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', $e->getMessage() ),
46
+			$view->errors = array(array(
47
+				'title' => $this->getContext()->getI18n()->dt('admin/jsonadm', $e->getMessage()),
48 48
 				'detail' => $e->getTraceAsString(),
49
-			) );
49
+			));
50 50
 		}
51
-		catch( \Aimeos\MShop\Exception $e )
51
+		catch (\Aimeos\MShop\Exception $e)
52 52
 		{
53 53
 			$status = 404;
54
-			$view->errors = array( array(
55
-				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
54
+			$view->errors = array(array(
55
+				'title' => $this->getContext()->getI18n()->dt('mshop', $e->getMessage()),
56 56
 				'detail' => $e->getTraceAsString(),
57
-			) );
57
+			));
58 58
 		}
59
-		catch( \Exception $e )
59
+		catch (\Exception $e)
60 60
 		{
61 61
 			$status = 500;
62
-			$view->errors = array( array(
62
+			$view->errors = array(array(
63 63
 				'title' => $e->getMessage(),
64 64
 				'detail' => $e->getTraceAsString(),
65
-			) );
65
+			));
66 66
 		}
67 67
 
68 68
 		/** admin/jsonadm/standard/template-delete
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
 		$tplconf = 'admin/jsonadm/standard/template-delete';
94 94
 		$default = 'delete-default.php';
95 95
 
96
-		$body = $view->render( $view->config( $tplconf, $default ) );
96
+		$body = $view->render($view->config($tplconf, $default));
97 97
 
98
-		return $response->withHeader( 'Content-Type', 'application/vnd.api+json; supported-ext="bulk"' )
99
-			->withBody( $view->response()->createStreamFromString( $body ) )
100
-			->withStatus( $status );
98
+		return $response->withHeader('Content-Type', 'application/vnd.api+json; supported-ext="bulk"')
99
+			->withBody($view->response()->createStreamFromString($body))
100
+			->withStatus($status);
101 101
 	}
102 102
 
103 103
 
@@ -108,33 +108,33 @@  discard block
 block discarded – undo
108 108
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
109 109
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
110 110
 	 */
111
-	public function get( ServerRequestInterface $request, ResponseInterface $response )
111
+	public function get(ServerRequestInterface $request, ResponseInterface $response)
112 112
 	{
113 113
 		$view = $this->getView();
114 114
 
115 115
 		try
116 116
 		{
117
-			$response = $this->getItems( $view, $request, $response );
117
+			$response = $this->getItems($view, $request, $response);
118 118
 			$status = 200;
119 119
 		}
120
-		catch( \Aimeos\MShop\Exception $e )
120
+		catch (\Aimeos\MShop\Exception $e)
121 121
 		{
122 122
 			$status = 404;
123
-			$view->errors = array( array(
124
-				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
123
+			$view->errors = array(array(
124
+				'title' => $this->getContext()->getI18n()->dt('mshop', $e->getMessage()),
125 125
 				'detail' => $e->getTraceAsString(),
126
-			) );
126
+			));
127 127
 		}
128
-		catch( \Exception $e )
128
+		catch (\Exception $e)
129 129
 		{
130 130
 			$status = 500;
131
-			$view->errors = array( array(
131
+			$view->errors = array(array(
132 132
 				'title' => $e->getMessage(),
133 133
 				'detail' => $e->getTraceAsString(),
134
-			) );
134
+			));
135 135
 		}
136 136
 
137
-		if( $view->param( 'aggregate' ) !== null )
137
+		if ($view->param('aggregate') !== null)
138 138
 		{
139 139
 			/** admin/jsonadm/standard/template-aggregate
140 140
 			 * Relative path to the JSON API template for GET aggregate requests
@@ -195,11 +195,11 @@  discard block
 block discarded – undo
195 195
 			$default = 'get-default.php';
196 196
 		}
197 197
 
198
-		$body = $view->render( $view->config( $tplconf, $default ) );
198
+		$body = $view->render($view->config($tplconf, $default));
199 199
 
200
-		return $response->withHeader( 'Content-Type', 'application/vnd.api+json; supported-ext="bulk"' )
201
-			->withBody( $view->response()->createStreamFromString( $body ) )
202
-			->withStatus( $status );
200
+		return $response->withHeader('Content-Type', 'application/vnd.api+json; supported-ext="bulk"')
201
+			->withBody($view->response()->createStreamFromString($body))
202
+			->withStatus($status);
203 203
 	}
204 204
 
205 205
 
@@ -210,38 +210,38 @@  discard block
 block discarded – undo
210 210
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
211 211
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
212 212
 	 */
213
-	public function patch( ServerRequestInterface $request, ResponseInterface $response )
213
+	public function patch(ServerRequestInterface $request, ResponseInterface $response)
214 214
 	{
215 215
 		$view = $this->getView();
216 216
 
217 217
 		try
218 218
 		{
219
-			$response = $this->patchItems( $view, $request, $response );
219
+			$response = $this->patchItems($view, $request, $response);
220 220
 			$status = 200;
221 221
 		}
222
-		catch( \Aimeos\Admin\JsonAdm\Exception $e )
222
+		catch (\Aimeos\Admin\JsonAdm\Exception $e)
223 223
 		{
224 224
 			$status = $e->getCode();
225
-			$view->errors = array( array(
226
-				'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', $e->getMessage() ),
225
+			$view->errors = array(array(
226
+				'title' => $this->getContext()->getI18n()->dt('admin/jsonadm', $e->getMessage()),
227 227
 				'detail' => $e->getTraceAsString(),
228
-			) );
228
+			));
229 229
 		}
230
-		catch( \Aimeos\MShop\Exception $e )
230
+		catch (\Aimeos\MShop\Exception $e)
231 231
 		{
232 232
 			$status = 404;
233
-			$view->errors = array( array(
234
-				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
233
+			$view->errors = array(array(
234
+				'title' => $this->getContext()->getI18n()->dt('mshop', $e->getMessage()),
235 235
 				'detail' => $e->getTraceAsString(),
236
-			) );
236
+			));
237 237
 		}
238
-		catch( \Exception $e )
238
+		catch (\Exception $e)
239 239
 		{
240 240
 			$status = 500;
241
-			$view->errors = array( array(
241
+			$view->errors = array(array(
242 242
 				'title' => $e->getMessage(),
243 243
 				'detail' => $e->getTraceAsString(),
244
-			) );
244
+			));
245 245
 		}
246 246
 
247 247
 		/** admin/jsonadm/standard/template-patch
@@ -272,11 +272,11 @@  discard block
 block discarded – undo
272 272
 		$tplconf = 'admin/jsonadm/standard/template-patch';
273 273
 		$default = 'patch-default.php';
274 274
 
275
-		$body = $view->render( $view->config( $tplconf, $default ) );
275
+		$body = $view->render($view->config($tplconf, $default));
276 276
 
277
-		return $response->withHeader( 'Content-Type', 'application/vnd.api+json; supported-ext="bulk"' )
278
-			->withBody( $view->response()->createStreamFromString( $body ) )
279
-			->withStatus( $status );
277
+		return $response->withHeader('Content-Type', 'application/vnd.api+json; supported-ext="bulk"')
278
+			->withBody($view->response()->createStreamFromString($body))
279
+			->withStatus($status);
280 280
 	}
281 281
 
282 282
 
@@ -287,38 +287,38 @@  discard block
 block discarded – undo
287 287
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
288 288
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
289 289
 	 */
290
-	public function post( ServerRequestInterface $request, ResponseInterface $response )
290
+	public function post(ServerRequestInterface $request, ResponseInterface $response)
291 291
 	{
292 292
 		$view = $this->getView();
293 293
 
294 294
 		try
295 295
 		{
296
-			$response = $this->postItems( $view, $request, $response );
296
+			$response = $this->postItems($view, $request, $response);
297 297
 			$status = 201;
298 298
 		}
299
-		catch( \Aimeos\Admin\JsonAdm\Exception $e )
299
+		catch (\Aimeos\Admin\JsonAdm\Exception $e)
300 300
 		{
301 301
 			$status = $e->getCode();
302
-			$view->errors = array( array(
303
-				'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', $e->getMessage() ),
302
+			$view->errors = array(array(
303
+				'title' => $this->getContext()->getI18n()->dt('admin/jsonadm', $e->getMessage()),
304 304
 				'detail' => $e->getTraceAsString(),
305
-			) );
305
+			));
306 306
 		}
307
-		catch( \Aimeos\MShop\Exception $e )
307
+		catch (\Aimeos\MShop\Exception $e)
308 308
 		{
309 309
 			$status = 404;
310
-			$view->errors = array( array(
311
-				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
310
+			$view->errors = array(array(
311
+				'title' => $this->getContext()->getI18n()->dt('mshop', $e->getMessage()),
312 312
 				'detail' => $e->getTraceAsString(),
313
-			) );
313
+			));
314 314
 		}
315
-		catch( \Exception $e )
315
+		catch (\Exception $e)
316 316
 		{
317 317
 			$status = 500;
318
-			$view->errors = array( array(
318
+			$view->errors = array(array(
319 319
 				'title' => $e->getMessage(),
320 320
 				'detail' => $e->getTraceAsString(),
321
-			) );
321
+			));
322 322
 		}
323 323
 
324 324
 		/** admin/jsonadm/standard/template-post
@@ -349,11 +349,11 @@  discard block
 block discarded – undo
349 349
 		$tplconf = 'admin/jsonadm/standard/template-post';
350 350
 		$default = 'post-default.php';
351 351
 
352
-		$body = $view->render( $view->config( $tplconf, $default ) );
352
+		$body = $view->render($view->config($tplconf, $default));
353 353
 
354
-		return $response->withHeader( 'Content-Type', 'application/vnd.api+json; supported-ext="bulk"' )
355
-			->withBody( $view->response()->createStreamFromString( $body ) )
356
-			->withStatus( $status );
354
+		return $response->withHeader('Content-Type', 'application/vnd.api+json; supported-ext="bulk"')
355
+			->withBody($view->response()->createStreamFromString($body))
356
+			->withStatus($status);
357 357
 	}
358 358
 
359 359
 
@@ -364,14 +364,14 @@  discard block
 block discarded – undo
364 364
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
365 365
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
366 366
 	 */
367
-	public function put( ServerRequestInterface $request, ResponseInterface $response )
367
+	public function put(ServerRequestInterface $request, ResponseInterface $response)
368 368
 	{
369 369
 		$status = 501;
370 370
 		$view = $this->getView();
371 371
 
372
-		$view->errors = array( array(
373
-			'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', 'Not implemented, use PATCH instead' ),
374
-		) );
372
+		$view->errors = array(array(
373
+			'title' => $this->getContext()->getI18n()->dt('admin/jsonadm', 'Not implemented, use PATCH instead'),
374
+		));
375 375
 
376 376
 		/** admin/jsonadm/standard/template-put
377 377
 		 * Relative path to the JSON API template for PUT requests
@@ -401,11 +401,11 @@  discard block
 block discarded – undo
401 401
 		$tplconf = 'admin/jsonadm/standard/template-put';
402 402
 		$default = 'put-default.php';
403 403
 
404
-		$body = $view->render( $view->config( $tplconf, $default ) );
404
+		$body = $view->render($view->config($tplconf, $default));
405 405
 
406
-		return $response->withHeader( 'Content-Type', 'application/vnd.api+json; supported-ext="bulk"' )
407
-			->withBody( $view->response()->createStreamFromString( $body ) )
408
-			->withStatus( $status );
406
+		return $response->withHeader('Content-Type', 'application/vnd.api+json; supported-ext="bulk"')
407
+			->withBody($view->response()->createStreamFromString($body))
408
+			->withStatus($status);
409 409
 	}
410 410
 
411 411
 
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
 	 * @param string|null $prefix Form parameter prefix when nesting parameters is required
418 418
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
419 419
 	 */
420
-	public function options( ServerRequestInterface $request, ResponseInterface $response, $prefix = null )
420
+	public function options(ServerRequestInterface $request, ResponseInterface $response, $prefix = null)
421 421
 	{
422 422
 		$context = $this->getContext();
423 423
 		$view = $this->getView();
@@ -426,11 +426,11 @@  discard block
 block discarded – undo
426 426
 		{
427 427
 			$resources = $attributes = [];
428 428
 
429
-			foreach( $this->getDomains( $view ) as $domain )
429
+			foreach ($this->getDomains($view) as $domain)
430 430
 			{
431
-				$manager = \Aimeos\MShop\Factory::createManager( $context, $domain );
432
-				$resources = array_merge( $resources, $manager->getResourceType( true ) );
433
-				$attributes = array_merge( $attributes, $manager->getSearchAttributes( true ) );
431
+				$manager = \Aimeos\MShop\Factory::createManager($context, $domain);
432
+				$resources = array_merge($resources, $manager->getResourceType(true));
433
+				$attributes = array_merge($attributes, $manager->getSearchAttributes(true));
434 434
 			}
435 435
 
436 436
 			$view->prefix = $prefix;
@@ -439,21 +439,21 @@  discard block
 block discarded – undo
439 439
 
440 440
 			$status = 200;
441 441
 		}
442
-		catch( \Aimeos\MShop\Exception $e )
442
+		catch (\Aimeos\MShop\Exception $e)
443 443
 		{
444 444
 			$status = 404;
445
-			$view->errors = array( array(
446
-				'title' => $context->getI18n()->dt( 'mshop', $e->getMessage() ),
445
+			$view->errors = array(array(
446
+				'title' => $context->getI18n()->dt('mshop', $e->getMessage()),
447 447
 				'detail' => $e->getTraceAsString(),
448
-			) );
448
+			));
449 449
 		}
450
-		catch( \Exception $e )
450
+		catch (\Exception $e)
451 451
 		{
452 452
 			$status = 500;
453
-			$view->errors = array( array(
453
+			$view->errors = array(array(
454 454
 				'title' => $e->getMessage(),
455 455
 				'detail' => $e->getTraceAsString(),
456
-			) );
456
+			));
457 457
 		}
458 458
 
459 459
 		/** admin/jsonadm/standard/template-options
@@ -484,12 +484,12 @@  discard block
 block discarded – undo
484 484
 		$tplconf = 'admin/jsonadm/standard/template-options';
485 485
 		$default = 'options-default.php';
486 486
 
487
-		$body = $view->render( $view->config( $tplconf, $default ) );
487
+		$body = $view->render($view->config($tplconf, $default));
488 488
 
489
-		return $response->withHeader( 'Allow', 'DELETE,GET,PATCH,POST,OPTIONS' )
490
-			->withHeader( 'Content-Type', 'application/vnd.api+json; supported-ext="bulk"' )
491
-			->withBody( $view->response()->createStreamFromString( $body ) )
492
-			->withStatus( $status );
489
+		return $response->withHeader('Allow', 'DELETE,GET,PATCH,POST,OPTIONS')
490
+			->withHeader('Content-Type', 'application/vnd.api+json; supported-ext="bulk"')
491
+			->withBody($view->response()->createStreamFromString($body))
492
+			->withStatus($status);
493 493
 	}
494 494
 
495 495
 
@@ -502,25 +502,25 @@  discard block
 block discarded – undo
502 502
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
503 503
 	 * @throws \Aimeos\Admin\JsonAdm\Exception If the request body is invalid
504 504
 	 */
505
-	protected function deleteItems( \Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response )
505
+	protected function deleteItems(\Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response)
506 506
 	{
507
-		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $this->getPath() );
507
+		$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $this->getPath());
508 508
 
509
-		if( ( $id = $view->param( 'id' ) ) == null )
509
+		if (($id = $view->param('id')) == null)
510 510
 		{
511 511
 			$body = (string) $request->getBody();
512 512
 
513
-			if( ( $payload = json_decode( $body ) ) === null || !isset( $payload->data ) || !is_array( $payload->data ) ) {
514
-				throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'Invalid JSON in body' ), 400 );
513
+			if (($payload = json_decode($body)) === null || !isset($payload->data) || !is_array($payload->data)) {
514
+				throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Invalid JSON in body'), 400);
515 515
 			}
516 516
 
517
-			$ids = $this->getIds( $payload );
518
-			$manager->deleteItems( $ids );
519
-			$view->total = count( $ids );
517
+			$ids = $this->getIds($payload);
518
+			$manager->deleteItems($ids);
519
+			$view->total = count($ids);
520 520
 		}
521 521
 		else
522 522
 		{
523
-			$manager->deleteItem( $id );
523
+			$manager->deleteItem($id);
524 524
 			$view->total = 1;
525 525
 		}
526 526
 
@@ -536,35 +536,35 @@  discard block
 block discarded – undo
536 536
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
537 537
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
538 538
 	 */
539
-	protected function getItems( \Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response )
539
+	protected function getItems(\Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response)
540 540
 	{
541
-		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $this->getPath() );
541
+		$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $this->getPath());
542 542
 
543
-		if( ( $key = $view->param( 'aggregate' ) ) !== null )
543
+		if (($key = $view->param('aggregate')) !== null)
544 544
 		{
545
-			$search = $this->initCriteria( $manager->createSearch(), $view->param() );
546
-			$view->data = $manager->aggregate( $search, $key );
545
+			$search = $this->initCriteria($manager->createSearch(), $view->param());
546
+			$view->data = $manager->aggregate($search, $key);
547 547
 			return $response;
548 548
 		}
549 549
 
550 550
 		$total = 1;
551
-		$include = ( ( $include = $view->param( 'include' ) ) !== null ? explode( ',', $include ) : [] );
551
+		$include = (($include = $view->param('include')) !== null ? explode(',', $include) : []);
552 552
 
553
-		if( ( $id = $view->param( 'id' ) ) == null )
553
+		if (($id = $view->param('id')) == null)
554 554
 		{
555
-			$search = $this->initCriteria( $manager->createSearch(), $view->param() );
556
-			$view->data = $manager->searchItems( $search, [], $total );
557
-			$view->childItems = $this->getChildItems( $view->data, $include );
558
-			$view->listItems = $this->getListItems( $view->data, $include );
555
+			$search = $this->initCriteria($manager->createSearch(), $view->param());
556
+			$view->data = $manager->searchItems($search, [], $total);
557
+			$view->childItems = $this->getChildItems($view->data, $include);
558
+			$view->listItems = $this->getListItems($view->data, $include);
559 559
 		}
560 560
 		else
561 561
 		{
562
-			$view->data = $manager->getItem( $id, [] );
563
-			$view->childItems = $this->getChildItems( array( $id => $view->data ), $include );
564
-			$view->listItems = $this->getListItems( array( $id => $view->data ), $include );
562
+			$view->data = $manager->getItem($id, []);
563
+			$view->childItems = $this->getChildItems(array($id => $view->data), $include);
564
+			$view->listItems = $this->getListItems(array($id => $view->data), $include);
565 565
 		}
566 566
 
567
-		$view->refItems = $this->getRefItems( $view->listItems );
567
+		$view->refItems = $this->getRefItems($view->listItems);
568 568
 		$view->total = $total;
569 569
 
570 570
 		return $response;
@@ -580,35 +580,35 @@  discard block
 block discarded – undo
580 580
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
581 581
 	 * @throws \Aimeos\Admin\JsonAdm\Exception If "id" parameter isn't available or the body is invalid
582 582
 	 */
583
-	protected function patchItems( \Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response )
583
+	protected function patchItems(\Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response)
584 584
 	{
585 585
 		$body = (string) $request->getBody();
586 586
 
587
-		if( ( $payload = json_decode( $body ) ) === null || !isset( $payload->data ) ) {
588
-			throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'Invalid JSON in body' ), 400 );
587
+		if (($payload = json_decode($body)) === null || !isset($payload->data)) {
588
+			throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Invalid JSON in body'), 400);
589 589
 		}
590 590
 
591
-		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $this->getPath() );
591
+		$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $this->getPath());
592 592
 
593
-		if( is_array( $payload->data ) )
593
+		if (is_array($payload->data))
594 594
 		{
595
-			$data = $this->saveData( $manager, $payload );
595
+			$data = $this->saveData($manager, $payload);
596 596
 
597 597
 			$view->data = $data;
598
-			$view->total = count( $data );
599
-			$response = $response->withHeader( 'Content-Type', 'application/vnd.api+json; ext="bulk"; supported-ext="bulk"' );
598
+			$view->total = count($data);
599
+			$response = $response->withHeader('Content-Type', 'application/vnd.api+json; ext="bulk"; supported-ext="bulk"');
600 600
 		}
601
-		elseif( ( $id = $view->param( 'id' ) ) != null )
601
+		elseif (($id = $view->param('id')) != null)
602 602
 		{
603 603
 			$payload->data->id = $id;
604
-			$data = $this->saveEntry( $manager, $payload->data );
604
+			$data = $this->saveEntry($manager, $payload->data);
605 605
 
606 606
 			$view->data = $data;
607 607
 			$view->total = 1;
608 608
 		}
609 609
 		else
610 610
 		{
611
-			throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'No ID given' ), 400 );
611
+			throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('No ID given'), 400);
612 612
 		}
613 613
 
614 614
 		return $response;
@@ -623,33 +623,33 @@  discard block
 block discarded – undo
623 623
 	 * @param \Psr\Http\Message\ResponseInterface $response Response object
624 624
 	 * @return \Psr\Http\Message\ResponseInterface Modified response object
625 625
 	 */
626
-	protected function postItems( \Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response )
626
+	protected function postItems(\Aimeos\MW\View\Iface $view, ServerRequestInterface $request, ResponseInterface $response)
627 627
 	{
628 628
 		$body = (string) $request->getBody();
629 629
 
630
-		if( ( $payload = json_decode( $body ) ) === null || !isset( $payload->data ) ) {
631
-			throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'Invalid JSON in body' ), 400 );
630
+		if (($payload = json_decode($body)) === null || !isset($payload->data)) {
631
+			throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Invalid JSON in body'), 400);
632 632
 		}
633 633
 
634
-		if( isset( $payload->data->id ) || $view->param( 'id' ) != null ) {
635
-			throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'Client generated IDs are not supported' ), 403 );
634
+		if (isset($payload->data->id) || $view->param('id') != null) {
635
+			throw new \Aimeos\Admin\JsonAdm\Exception(sprintf('Client generated IDs are not supported'), 403);
636 636
 		}
637 637
 
638 638
 
639
-		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), $this->getPath() );
639
+		$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), $this->getPath());
640 640
 
641
-		if( is_array( $payload->data ) )
641
+		if (is_array($payload->data))
642 642
 		{
643
-			$data = $this->saveData( $manager, $payload );
643
+			$data = $this->saveData($manager, $payload);
644 644
 
645 645
 			$view->data = $data;
646
-			$view->total = count( $data );
647
-			$response = $response->withHeader( 'Content-Type', 'application/vnd.api+json; ext="bulk"; supported-ext="bulk"' );
646
+			$view->total = count($data);
647
+			$response = $response->withHeader('Content-Type', 'application/vnd.api+json; ext="bulk"; supported-ext="bulk"');
648 648
 		}
649 649
 		else
650 650
 		{
651 651
 			$payload->data->id = null;
652
-			$data = $this->saveEntry( $manager, $payload->data );
652
+			$data = $this->saveEntry($manager, $payload->data);
653 653
 
654 654
 			$view->data = $data;
655 655
 			$view->total = 1;
Please login to merge, or discard this patch.
Braces   +19 added lines, -38 removed lines patch added patch discarded remove patch
@@ -39,24 +39,21 @@  discard block
 block discarded – undo
39 39
 		{
40 40
 			$response = $this->deleteItems( $view, $request, $response );
41 41
 			$status = 200;
42
-		}
43
-		catch( \Aimeos\Admin\JsonAdm\Exception $e )
42
+		} catch( \Aimeos\Admin\JsonAdm\Exception $e )
44 43
 		{
45 44
 			$status = $e->getCode();
46 45
 			$view->errors = array( array(
47 46
 				'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', $e->getMessage() ),
48 47
 				'detail' => $e->getTraceAsString(),
49 48
 			) );
50
-		}
51
-		catch( \Aimeos\MShop\Exception $e )
49
+		} catch( \Aimeos\MShop\Exception $e )
52 50
 		{
53 51
 			$status = 404;
54 52
 			$view->errors = array( array(
55 53
 				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
56 54
 				'detail' => $e->getTraceAsString(),
57 55
 			) );
58
-		}
59
-		catch( \Exception $e )
56
+		} catch( \Exception $e )
60 57
 		{
61 58
 			$status = 500;
62 59
 			$view->errors = array( array(
@@ -116,16 +113,14 @@  discard block
 block discarded – undo
116 113
 		{
117 114
 			$response = $this->getItems( $view, $request, $response );
118 115
 			$status = 200;
119
-		}
120
-		catch( \Aimeos\MShop\Exception $e )
116
+		} catch( \Aimeos\MShop\Exception $e )
121 117
 		{
122 118
 			$status = 404;
123 119
 			$view->errors = array( array(
124 120
 				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
125 121
 				'detail' => $e->getTraceAsString(),
126 122
 			) );
127
-		}
128
-		catch( \Exception $e )
123
+		} catch( \Exception $e )
129 124
 		{
130 125
 			$status = 500;
131 126
 			$view->errors = array( array(
@@ -163,8 +158,7 @@  discard block
 block discarded – undo
163 158
 			 */
164 159
 			$tplconf = 'admin/jsonadm/standard/template-aggregate';
165 160
 			$default = 'aggregate-default.php';
166
-		}
167
-		else
161
+		} else
168 162
 		{
169 163
 			/** admin/jsonadm/standard/template-get
170 164
 			 * Relative path to the JSON API template for GET requests
@@ -218,24 +212,21 @@  discard block
 block discarded – undo
218 212
 		{
219 213
 			$response = $this->patchItems( $view, $request, $response );
220 214
 			$status = 200;
221
-		}
222
-		catch( \Aimeos\Admin\JsonAdm\Exception $e )
215
+		} catch( \Aimeos\Admin\JsonAdm\Exception $e )
223 216
 		{
224 217
 			$status = $e->getCode();
225 218
 			$view->errors = array( array(
226 219
 				'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', $e->getMessage() ),
227 220
 				'detail' => $e->getTraceAsString(),
228 221
 			) );
229
-		}
230
-		catch( \Aimeos\MShop\Exception $e )
222
+		} catch( \Aimeos\MShop\Exception $e )
231 223
 		{
232 224
 			$status = 404;
233 225
 			$view->errors = array( array(
234 226
 				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
235 227
 				'detail' => $e->getTraceAsString(),
236 228
 			) );
237
-		}
238
-		catch( \Exception $e )
229
+		} catch( \Exception $e )
239 230
 		{
240 231
 			$status = 500;
241 232
 			$view->errors = array( array(
@@ -295,24 +286,21 @@  discard block
 block discarded – undo
295 286
 		{
296 287
 			$response = $this->postItems( $view, $request, $response );
297 288
 			$status = 201;
298
-		}
299
-		catch( \Aimeos\Admin\JsonAdm\Exception $e )
289
+		} catch( \Aimeos\Admin\JsonAdm\Exception $e )
300 290
 		{
301 291
 			$status = $e->getCode();
302 292
 			$view->errors = array( array(
303 293
 				'title' => $this->getContext()->getI18n()->dt( 'admin/jsonadm', $e->getMessage() ),
304 294
 				'detail' => $e->getTraceAsString(),
305 295
 			) );
306
-		}
307
-		catch( \Aimeos\MShop\Exception $e )
296
+		} catch( \Aimeos\MShop\Exception $e )
308 297
 		{
309 298
 			$status = 404;
310 299
 			$view->errors = array( array(
311 300
 				'title' => $this->getContext()->getI18n()->dt( 'mshop', $e->getMessage() ),
312 301
 				'detail' => $e->getTraceAsString(),
313 302
 			) );
314
-		}
315
-		catch( \Exception $e )
303
+		} catch( \Exception $e )
316 304
 		{
317 305
 			$status = 500;
318 306
 			$view->errors = array( array(
@@ -438,16 +426,14 @@  discard block
 block discarded – undo
438 426
 			$view->attributes = $attributes;
439 427
 
440 428
 			$status = 200;
441
-		}
442
-		catch( \Aimeos\MShop\Exception $e )
429
+		} catch( \Aimeos\MShop\Exception $e )
443 430
 		{
444 431
 			$status = 404;
445 432
 			$view->errors = array( array(
446 433
 				'title' => $context->getI18n()->dt( 'mshop', $e->getMessage() ),
447 434
 				'detail' => $e->getTraceAsString(),
448 435
 			) );
449
-		}
450
-		catch( \Exception $e )
436
+		} catch( \Exception $e )
451 437
 		{
452 438
 			$status = 500;
453 439
 			$view->errors = array( array(
@@ -517,8 +503,7 @@  discard block
 block discarded – undo
517 503
 			$ids = $this->getIds( $payload );
518 504
 			$manager->deleteItems( $ids );
519 505
 			$view->total = count( $ids );
520
-		}
521
-		else
506
+		} else
522 507
 		{
523 508
 			$manager->deleteItem( $id );
524 509
 			$view->total = 1;
@@ -556,8 +541,7 @@  discard block
 block discarded – undo
556 541
 			$view->data = $manager->searchItems( $search, [], $total );
557 542
 			$view->childItems = $this->getChildItems( $view->data, $include );
558 543
 			$view->listItems = $this->getListItems( $view->data, $include );
559
-		}
560
-		else
544
+		} else
561 545
 		{
562 546
 			$view->data = $manager->getItem( $id, [] );
563 547
 			$view->childItems = $this->getChildItems( array( $id => $view->data ), $include );
@@ -597,16 +581,14 @@  discard block
 block discarded – undo
597 581
 			$view->data = $data;
598 582
 			$view->total = count( $data );
599 583
 			$response = $response->withHeader( 'Content-Type', 'application/vnd.api+json; ext="bulk"; supported-ext="bulk"' );
600
-		}
601
-		elseif( ( $id = $view->param( 'id' ) ) != null )
584
+		} elseif( ( $id = $view->param( 'id' ) ) != null )
602 585
 		{
603 586
 			$payload->data->id = $id;
604 587
 			$data = $this->saveEntry( $manager, $payload->data );
605 588
 
606 589
 			$view->data = $data;
607 590
 			$view->total = 1;
608
-		}
609
-		else
591
+		} else
610 592
 		{
611 593
 			throw new \Aimeos\Admin\JsonAdm\Exception( sprintf( 'No ID given' ), 400 );
612 594
 		}
@@ -645,8 +627,7 @@  discard block
 block discarded – undo
645 627
 			$view->data = $data;
646 628
 			$view->total = count( $data );
647 629
 			$response = $response->withHeader( 'Content-Type', 'application/vnd.api+json; ext="bulk"; supported-ext="bulk"' );
648
-		}
649
-		else
630
+		} else
650 631
 		{
651 632
 			$payload->data->id = null;
652 633
 			$data = $this->saveEntry( $manager, $payload->data );
Please login to merge, or discard this patch.
admin/jsonadm/templates/aggregate-default.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$data = $this->get( 'data', [] );
3
+$data = $this->get('data', []);
4 4
 $entries = [];
5 5
 
6
-foreach( $data as $key => $value ) {
7
-	$entries[] = array( 'id' => $key, 'type' => 'aggregate', 'attributes' => $value );
6
+foreach ($data as $key => $value) {
7
+	$entries[] = array('id' => $key, 'type' => 'aggregate', 'attributes' => $value);
8 8
 }
9 9
 
10 10
 ?>
11 11
 {
12 12
 	"meta": {
13
-		"total": <?php echo count( $data ); ?>
13
+		"total": <?php echo count($data); ?>
14 14
 
15 15
 	},
16
-<?php	if( isset( $this->errors ) ) : ?>
17
-	"errors": <?php echo $this->partial( $this->config( $this->get( 'partial-errors', 'admin/jsonadm/partials/template-errors' ), 'partials/errors-standard.php' ), array( 'errors' => $this->errors ) ); ?>
18
-<?php	elseif( isset( $this->data ) ) : ?>
19
-	"data": <?php echo json_encode( $entries ); ?>
16
+<?php	if (isset($this->errors)) : ?>
17
+	"errors": <?php echo $this->partial($this->config($this->get('partial-errors', 'admin/jsonadm/partials/template-errors'), 'partials/errors-standard.php'), array('errors' => $this->errors)); ?>
18
+<?php	elseif (isset($this->data)) : ?>
19
+	"data": <?php echo json_encode($entries); ?>
20 20
 <?php	endif; ?>
21 21
 }
Please login to merge, or discard this patch.
admin/jsonadm/templates/get-default.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
  * @see admin/jsonadm/url/action
15 15
  * @see admin/jsonadm/url/config
16 16
  */
17
-$target = $this->config( 'admin/jsonadm/url/target' );
17
+$target = $this->config('admin/jsonadm/url/target');
18 18
 
19 19
 /** admin/jsonadm/url/controller
20 20
  * Name of the client whose action should be called
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
  * @see admin/jsonadm/url/action
31 31
  * @see admin/jsonadm/url/config
32 32
  */
33
-$cntl = $this->config( 'admin/jsonadm/url/controller', 'jsonadm' );
33
+$cntl = $this->config('admin/jsonadm/url/controller', 'jsonadm');
34 34
 
35 35
 /** admin/jsonadm/url/action
36 36
  * Name of the action that should create the output
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
  * @see admin/jsonadm/url/controller
47 47
  * @see admin/jsonadm/url/config
48 48
  */
49
-$action = $this->config( 'admin/jsonadm/url/action', 'get' );
49
+$action = $this->config('admin/jsonadm/url/action', 'get');
50 50
 
51 51
 /** admin/jsonadm/url/config
52 52
  * Associative list of configuration options used for generating the URL
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
  * @see admin/jsonadm/url/controller
69 69
  * @see admin/jsonadm/url/action
70 70
  */
71
-$config = $this->config( 'admin/jsonadm/url/config', [] );
71
+$config = $this->config('admin/jsonadm/url/config', []);
72 72
 
73 73
 
74 74
 /** admin/jsonadm/partials/template-errors
@@ -120,22 +120,22 @@  discard block
 block discarded – undo
120 120
  */
121 121
 
122 122
 
123
-$ref = array( 'id', 'resource', 'filter', 'page', 'sort', 'include', 'fields' );
124
-$params = array_intersect_key( $this->param(), array_flip( $ref ) );
123
+$ref = array('id', 'resource', 'filter', 'page', 'sort', 'include', 'fields');
124
+$params = array_intersect_key($this->param(), array_flip($ref));
125 125
 
126
-if( !isset( $params['id'] ) ) {
126
+if (!isset($params['id'])) {
127 127
 	$params['id'] = '';
128 128
 }
129 129
 
130 130
 
131
-$total = $this->get( 'total', 0 );
132
-$offset = max( $this->param( 'page/offset', 0 ), 0 );
133
-$limit = max( $this->param( 'page/limit', 25 ), 1 );
131
+$total = $this->get('total', 0);
132
+$offset = max($this->param('page/offset', 0), 0);
133
+$limit = max($this->param('page/limit', 25), 1);
134 134
 
135
-$first = ( $offset > 0 ? 0 : null );
136
-$prev = ( $offset - $limit >= 0 ? $offset - $limit : null );
137
-$next = ( $offset + $limit < $total ? $offset + $limit : null );
138
-$last = ( ((int) ($total / $limit)) * $limit > $offset ? ((int) ($total / $limit)) * $limit : null );
135
+$first = ($offset > 0 ? 0 : null);
136
+$prev = ($offset - $limit >= 0 ? $offset - $limit : null);
137
+$next = ($offset + $limit < $total ? $offset + $limit : null);
138
+$last = (((int) ($total / $limit)) * $limit > $offset ? ((int) ($total / $limit)) * $limit : null);
139 139
 
140 140
 ?>
141 141
 {
@@ -144,27 +144,27 @@  discard block
 block discarded – undo
144 144
 
145 145
 	},
146 146
 	"links": {
147
-<?php if( is_array( $this->get( 'data' ) ) ) : ?>
148
-<?php	if( $first !== null ) : ?>
149
-		"first": "<?php $params['page']['offset'] = $first; echo $this->url( $target, $cntl, $action, $params, [], $config ); ?>",
147
+<?php if (is_array($this->get('data'))) : ?>
148
+<?php	if ($first !== null) : ?>
149
+		"first": "<?php $params['page']['offset'] = $first; echo $this->url($target, $cntl, $action, $params, [], $config); ?>",
150 150
 <?php	endif; ?>
151
-<?php	if( $prev !== null ) : ?>
152
-		"prev": "<?php $params['page']['offset'] = $prev; echo $this->url( $target, $cntl, $action, $params, [], $config ); ?>",
151
+<?php	if ($prev !== null) : ?>
152
+		"prev": "<?php $params['page']['offset'] = $prev; echo $this->url($target, $cntl, $action, $params, [], $config); ?>",
153 153
 <?php	endif; ?>
154
-<?php	if( $next !== null ) : ?>
155
-		"next": "<?php $params['page']['offset'] = $next; echo $this->url( $target, $cntl, $action, $params, [], $config ); ?>",
154
+<?php	if ($next !== null) : ?>
155
+		"next": "<?php $params['page']['offset'] = $next; echo $this->url($target, $cntl, $action, $params, [], $config); ?>",
156 156
 <?php	endif; ?>
157
-<?php	if( $last !== null ) : ?>
158
-		"last": "<?php $params['page']['offset'] = $last; echo $this->url( $target, $cntl, $action, $params, [], $config ); ?>",
157
+<?php	if ($last !== null) : ?>
158
+		"last": "<?php $params['page']['offset'] = $last; echo $this->url($target, $cntl, $action, $params, [], $config); ?>",
159 159
 <?php	endif; ?>
160 160
 <?php endif; ?>
161
-		"self": "<?php $params['page']['offset'] = $offset; echo $this->url( $target, $cntl, $action, $params, [], $config ); ?>"
161
+		"self": "<?php $params['page']['offset'] = $offset; echo $this->url($target, $cntl, $action, $params, [], $config); ?>"
162 162
 	},
163
-<?php if( isset( $this->errors ) ) : ?>
164
-	"errors": <?php echo $this->partial( $this->config( $this->get( 'partial-errors', 'admin/jsonadm/partials/template-errors' ), 'partials/errors-standard.php' ), array( 'errors' => $this->errors ) ); ?>
165
-<?php elseif( isset( $this->data ) ) : ?>
166
-	"data": <?php echo $this->partial( $this->config( $this->get( 'partial-data', 'admin/jsonadm/partials/template-data' ), 'partials/data-standard.php' ), array( 'data' => $this->get( 'data' ), 'childItems' => $this->get( 'childItems', [] ), 'listItems' => $this->get( 'listItems', [] ) ) ); ?>,
167
-	"included": <?php echo $this->partial( $this->config( $this->get( 'partial-included', 'admin/jsonadm/partials/template-included' ), 'partials/included-standard.php' ), array( 'childItems' => $this->get( 'childItems', [] ), 'refItems' => $this->get( 'refItems', [] ) ) ); ?>
163
+<?php if (isset($this->errors)) : ?>
164
+	"errors": <?php echo $this->partial($this->config($this->get('partial-errors', 'admin/jsonadm/partials/template-errors'), 'partials/errors-standard.php'), array('errors' => $this->errors)); ?>
165
+<?php elseif (isset($this->data)) : ?>
166
+	"data": <?php echo $this->partial($this->config($this->get('partial-data', 'admin/jsonadm/partials/template-data'), 'partials/data-standard.php'), array('data' => $this->get('data'), 'childItems' => $this->get('childItems', []), 'listItems' => $this->get('listItems', []))); ?>,
167
+	"included": <?php echo $this->partial($this->config($this->get('partial-included', 'admin/jsonadm/partials/template-included'), 'partials/included-standard.php'), array('childItems' => $this->get('childItems', []), 'refItems' => $this->get('refItems', []))); ?>
168 168
 <?php endif; ?>
169 169
 
170 170
 }
Please login to merge, or discard this patch.
admin/jsonadm/templates/partials/order/data-standard.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1,25 +1,25 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $options = 0;
4
-if( defined( 'JSON_PRETTY_PRINT' ) ) {
4
+if (defined('JSON_PRETTY_PRINT')) {
5 5
 	$options = JSON_PRETTY_PRINT;
6 6
 }
7 7
 
8
-$build = function( \Aimeos\MW\View\Iface $view, \Aimeos\MShop\Order\Item\Iface $item, array $fields, array $childItems )
8
+$build = function(\Aimeos\MW\View\Iface $view, \Aimeos\MShop\Order\Item\Iface $item, array $fields, array $childItems)
9 9
 {
10 10
 	$id = $item->getId();
11 11
 	$baseId = $item->getBaseId();
12 12
 	$attributes = $item->toArray();
13 13
 	$type = $item->getResourceType();
14
-	$params = array( 'resource' => $item->getResourceType(), 'id' => $id );
14
+	$params = array('resource' => $item->getResourceType(), 'id' => $id);
15 15
 
16
-	$target = $view->config( 'admin/jsonadm/url/target' );
17
-	$cntl = $view->config( 'admin/jsonadm/url/controller', 'jsonadm' );
18
-	$action = $view->config( 'admin/jsonadm/url/action', 'get' );
19
-	$config = $view->config( 'admin/jsonadm/url/config', [] );
16
+	$target = $view->config('admin/jsonadm/url/target');
17
+	$cntl = $view->config('admin/jsonadm/url/controller', 'jsonadm');
18
+	$action = $view->config('admin/jsonadm/url/action', 'get');
19
+	$config = $view->config('admin/jsonadm/url/config', []);
20 20
 
21
-	if( isset( $fields[$type] ) ) {
22
-		$attributes = array_intersect_key( $attributes, $fields[$type] );
21
+	if (isset($fields[$type])) {
22
+		$attributes = array_intersect_key($attributes, $fields[$type]);
23 23
 	}
24 24
 
25 25
 	$result = array(
@@ -27,25 +27,25 @@  discard block
 block discarded – undo
27 27
 		'type' => $type,
28 28
 		'attributes' => $attributes,
29 29
 		'links' => array(
30
-			'self' => $view->url( $target, $cntl, $action, $params, [], $config )
30
+			'self' => $view->url($target, $cntl, $action, $params, [], $config)
31 31
 		),
32 32
 		'relationships' => []
33 33
 	);
34 34
 
35
-	foreach( $childItems as $childId => $childItem )
35
+	foreach ($childItems as $childId => $childItem)
36 36
 	{
37
-		if( $childItem instanceof \Aimeos\MShop\Order\Item\Status\Iface && $childItem->getParentId() == $id
37
+		if ($childItem instanceof \Aimeos\MShop\Order\Item\Status\Iface && $childItem->getParentId() == $id
38 38
 			|| $childItem instanceof \Aimeos\MShop\Order\Item\Base\Iface && $childItem->getId() == $baseId
39 39
 		) {
40 40
 			$type = $childItem->getResourceType();
41
-			$params = array( 'resource' => $childItem->getResourceType(), 'id' => $childId );
41
+			$params = array('resource' => $childItem->getResourceType(), 'id' => $childId);
42 42
 
43
-			$result['relationships'][$type][] = array( 'data' => array(
43
+			$result['relationships'][$type][] = array('data' => array(
44 44
 				'id' => $childId, 'type' => $type,
45 45
 				'links' => array(
46
-					'self' => $view->url( $target, $cntl, $action, $params, [], $config )
46
+					'self' => $view->url($target, $cntl, $action, $params, [], $config)
47 47
 				)
48
-			) );
48
+			));
49 49
 		}
50 50
 	}
51 51
 
@@ -53,27 +53,27 @@  discard block
 block discarded – undo
53 53
 };
54 54
 
55 55
 
56
-$fields = $this->param( 'fields', [] );
56
+$fields = $this->param('fields', []);
57 57
 
58
-foreach( (array) $fields as $resource => $list ) {
59
-	$fields[$resource] = array_flip( explode( ',', $list ) );
58
+foreach ((array) $fields as $resource => $list) {
59
+	$fields[$resource] = array_flip(explode(',', $list));
60 60
 }
61 61
 
62 62
 
63
-$data = $this->get( 'data', [] );
64
-$childItems = $this->get( 'childItems', [] );
63
+$data = $this->get('data', []);
64
+$childItems = $this->get('childItems', []);
65 65
 
66
-if( is_array( $data ) )
66
+if (is_array($data))
67 67
 {
68 68
 	$response = [];
69 69
 
70
-	foreach( $data as $item ) {
71
-		$response[] = $build( $this, $item, $fields, $childItems );
70
+	foreach ($data as $item) {
71
+		$response[] = $build($this, $item, $fields, $childItems);
72 72
 	}
73 73
 }
74
-elseif( $data !== null )
74
+elseif ($data !== null)
75 75
 {
76
-	$response = $build( $this, $data, $fields, $childItems );
76
+	$response = $build($this, $data, $fields, $childItems);
77 77
 }
78 78
 else
79 79
 {
@@ -81,4 +81,4 @@  discard block
 block discarded – undo
81 81
 }
82 82
 
83 83
 
84
-echo json_encode( $response, $options );
85 84
\ No newline at end of file
85
+echo json_encode($response, $options);
86 86
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/templates/partials/order/base/data-standard.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1,24 +1,24 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $options = 0;
4
-if( defined( 'JSON_PRETTY_PRINT' ) ) {
4
+if (defined('JSON_PRETTY_PRINT')) {
5 5
 	$options = JSON_PRETTY_PRINT;
6 6
 }
7 7
 
8
-$build = function( \Aimeos\MW\View\Iface $view, \Aimeos\MShop\Order\Item\Base\Iface $item, array $fields, array $childItems )
8
+$build = function(\Aimeos\MW\View\Iface $view, \Aimeos\MShop\Order\Item\Base\Iface $item, array $fields, array $childItems)
9 9
 {
10 10
 	$id = $item->getId();
11 11
 	$attributes = $item->toArray();
12 12
 	$type = $item->getResourceType();
13
-	$params = array( 'resource' => $item->getResourceType(), 'id' => $id );
13
+	$params = array('resource' => $item->getResourceType(), 'id' => $id);
14 14
 
15
-	$target = $view->config( 'admin/jsonadm/url/target' );
16
-	$cntl = $view->config( 'admin/jsonadm/url/controller', 'jsonadm' );
17
-	$action = $view->config( 'admin/jsonadm/url/action', 'get' );
18
-	$config = $view->config( 'admin/jsonadm/url/config', [] );
15
+	$target = $view->config('admin/jsonadm/url/target');
16
+	$cntl = $view->config('admin/jsonadm/url/controller', 'jsonadm');
17
+	$action = $view->config('admin/jsonadm/url/action', 'get');
18
+	$config = $view->config('admin/jsonadm/url/config', []);
19 19
 
20
-	if( isset( $fields[$type] ) ) {
21
-		$attributes = array_intersect_key( $attributes, $fields[$type] );
20
+	if (isset($fields[$type])) {
21
+		$attributes = array_intersect_key($attributes, $fields[$type]);
22 22
 	}
23 23
 
24 24
 	$result = array(
@@ -26,23 +26,23 @@  discard block
 block discarded – undo
26 26
 		'type' => $type,
27 27
 		'attributes' => $attributes,
28 28
 		'links' => array(
29
-			'self' => $view->url( $target, $cntl, $action, $params, [], $config )
29
+			'self' => $view->url($target, $cntl, $action, $params, [], $config)
30 30
 		),
31 31
 		'relationships' => []
32 32
 	);
33 33
 
34
-	foreach( $childItems as $childId => $childItem )
34
+	foreach ($childItems as $childId => $childItem)
35 35
 	{
36
-		if( $childItem->getBaseId() == $id )
36
+		if ($childItem->getBaseId() == $id)
37 37
 		{
38 38
 			$type = $childItem->getResourceType();
39
-			$params = array( 'resource' => $childItem->getResourceType(), 'id' => $childId );
39
+			$params = array('resource' => $childItem->getResourceType(), 'id' => $childId);
40 40
 
41
-			$result['relationships'][$type][] = array( 'data' => array(
41
+			$result['relationships'][$type][] = array('data' => array(
42 42
 				'id' => $childId, 'type' => $type, 'links' => array(
43
-					'self' => $view->url( $target, $cntl, $action, $params, [], $config )
43
+					'self' => $view->url($target, $cntl, $action, $params, [], $config)
44 44
 				)
45
-			) );
45
+			));
46 46
 		}
47 47
 	}
48 48
 
@@ -50,27 +50,27 @@  discard block
 block discarded – undo
50 50
 };
51 51
 
52 52
 
53
-$fields = $this->param( 'fields', [] );
53
+$fields = $this->param('fields', []);
54 54
 
55
-foreach( (array) $fields as $resource => $list ) {
56
-	$fields[$resource] = array_flip( explode( ',', $list ) );
55
+foreach ((array) $fields as $resource => $list) {
56
+	$fields[$resource] = array_flip(explode(',', $list));
57 57
 }
58 58
 
59 59
 
60
-$data = $this->get( 'data', [] );
61
-$childItems = $this->get( 'childItems', [] );
60
+$data = $this->get('data', []);
61
+$childItems = $this->get('childItems', []);
62 62
 
63
-if( is_array( $data ) )
63
+if (is_array($data))
64 64
 {
65 65
 	$response = [];
66 66
 
67
-	foreach( $data as $item ) {
68
-		$response[] = $build( $this, $item, $fields, $childItems );
67
+	foreach ($data as $item) {
68
+		$response[] = $build($this, $item, $fields, $childItems);
69 69
 	}
70 70
 }
71
-elseif( $data !== null )
71
+elseif ($data !== null)
72 72
 {
73
-	$response = $build( $this, $data, $fields, $childItems );
73
+	$response = $build($this, $data, $fields, $childItems);
74 74
 }
75 75
 else
76 76
 {
@@ -78,4 +78,4 @@  discard block
 block discarded – undo
78 78
 }
79 79
 
80 80
 
81
-echo json_encode( $response, $options );
82 81
\ No newline at end of file
82
+echo json_encode($response, $options);
83 83
\ No newline at end of file
Please login to merge, or discard this patch.
admin/jsonadm/templates/partials/data-standard.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,25 +1,25 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 $options = 0;
4
-if( defined( 'JSON_PRETTY_PRINT' ) ) {
4
+if (defined('JSON_PRETTY_PRINT')) {
5 5
 	$options = JSON_PRETTY_PRINT;
6 6
 }
7 7
 
8 8
 
9
-$build = function( \Aimeos\MW\View\Iface $view, \Aimeos\MShop\Common\Item\Iface $item, array $fields, array $childItems, array $listItems )
9
+$build = function(\Aimeos\MW\View\Iface $view, \Aimeos\MShop\Common\Item\Iface $item, array $fields, array $childItems, array $listItems)
10 10
 {
11 11
 	$id = $item->getId();
12 12
 	$attributes = $item->toArray();
13 13
 	$type = $item->getResourceType();
14
-	$params = array( 'resource' => $item->getResourceType(), 'id' => $id );
14
+	$params = array('resource' => $item->getResourceType(), 'id' => $id);
15 15
 
16
-	$target = $view->config( 'admin/jsonadm/url/target' );
17
-	$cntl = $view->config( 'admin/jsonadm/url/controller', 'jsonadm' );
18
-	$action = $view->config( 'admin/jsonadm/url/action', 'get' );
19
-	$config = $view->config( 'admin/jsonadm/url/config', [] );
16
+	$target = $view->config('admin/jsonadm/url/target');
17
+	$cntl = $view->config('admin/jsonadm/url/controller', 'jsonadm');
18
+	$action = $view->config('admin/jsonadm/url/action', 'get');
19
+	$config = $view->config('admin/jsonadm/url/config', []);
20 20
 
21
-	if( isset( $fields[$type] ) ) {
22
-		$attributes = array_intersect_key( $attributes, $fields[$type] );
21
+	if (isset($fields[$type])) {
22
+		$attributes = array_intersect_key($attributes, $fields[$type]);
23 23
 	}
24 24
 
25 25
 	$result = array(
@@ -27,33 +27,33 @@  discard block
 block discarded – undo
27 27
 		'type' => $type,
28 28
 		'attributes' => $attributes,
29 29
 		'links' => array(
30
-			'self' => $view->url( $target, $cntl, $action, $params, [], $config )
30
+			'self' => $view->url($target, $cntl, $action, $params, [], $config)
31 31
 		),
32 32
 		'relationships' => []
33 33
 	);
34 34
 
35
-	foreach( $childItems as $childItem )
35
+	foreach ($childItems as $childItem)
36 36
 	{
37
-		if( $childItem->getParentId() == $id )
37
+		if ($childItem->getParentId() == $id)
38 38
 		{
39 39
 			$type = $childItem->getResourceType();
40
-			$result['relationships'][$type][] = array( 'data' => array( 'id' => $childItem->getId(), 'type' => $type ) );
40
+			$result['relationships'][$type][] = array('data' => array('id' => $childItem->getId(), 'type' => $type));
41 41
 		}
42 42
 	}
43 43
 
44
-	foreach( $listItems as $listId => $listItem )
44
+	foreach ($listItems as $listId => $listItem)
45 45
 	{
46
-		if( $listItem->getParentId() == $id )
46
+		if ($listItem->getParentId() == $id)
47 47
 		{
48 48
 			$type = $listItem->getDomain();
49
-			$params = array( 'resource' => $listItem->getResourceType(), 'id' => $listId );
49
+			$params = array('resource' => $listItem->getResourceType(), 'id' => $listId);
50 50
 
51
-			$result['relationships'][$type][] = array( 'data' => array(
51
+			$result['relationships'][$type][] = array('data' => array(
52 52
 				'id' => $listItem->getRefId(), 'type' => $type,
53 53
 				'attributes' => $listItem->toArray(), 'links' => array(
54
-					'self' => $view->url( $target, $cntl, $action, $params, [], $config )
54
+					'self' => $view->url($target, $cntl, $action, $params, [], $config)
55 55
 				)
56
-			) );
56
+			));
57 57
 		}
58 58
 	}
59 59
 
@@ -61,28 +61,28 @@  discard block
 block discarded – undo
61 61
 };
62 62
 
63 63
 
64
-$fields = $this->param( 'fields', [] );
64
+$fields = $this->param('fields', []);
65 65
 
66
-foreach( (array) $fields as $resource => $list ) {
67
-	$fields[$resource] = array_flip( explode( ',', $list ) );
66
+foreach ((array) $fields as $resource => $list) {
67
+	$fields[$resource] = array_flip(explode(',', $list));
68 68
 }
69 69
 
70 70
 
71
-$data = $this->get( 'data', [] );
72
-$childItems = $this->get( 'childItems', [] );
73
-$listItems = $this->get( 'listItems', [] );
71
+$data = $this->get('data', []);
72
+$childItems = $this->get('childItems', []);
73
+$listItems = $this->get('listItems', []);
74 74
 
75
-if( is_array( $data ) )
75
+if (is_array($data))
76 76
 {
77 77
 	$response = [];
78 78
 
79
-	foreach( $data as $item ) {
80
-		$response[] = $build( $this, $item, $fields, $childItems, $listItems );
79
+	foreach ($data as $item) {
80
+		$response[] = $build($this, $item, $fields, $childItems, $listItems);
81 81
 	}
82 82
 }
83
-elseif( $data !== null )
83
+elseif ($data !== null)
84 84
 {
85
-	$response = $build( $this, $data, $fields, $childItems, $listItems );
85
+	$response = $build($this, $data, $fields, $childItems, $listItems);
86 86
 }
87 87
 else
88 88
 {
@@ -90,4 +90,4 @@  discard block
 block discarded – undo
90 90
 }
91 91
 
92 92
 
93
-echo json_encode( $response, $options );
94 93
\ No newline at end of file
94
+echo json_encode($response, $options);
95 95
\ No newline at end of file
Please login to merge, or discard this patch.