| @@ -35,19 +35,19 @@ discard block | ||
| 35 | 35 | * @param \Illuminate\Http\Request $request Request object | 
| 36 | 36 | * @return \Illuminate\Http\Response Response object containing the generated output | 
| 37 | 37 | */ | 
| 38 | - public function deleteAction( Request $request ) | |
| 38 | + public function deleteAction(Request $request) | |
| 39 | 39 |  	{ | 
| 40 | -		if( config( 'shop.authorize', true ) ) { | |
| 41 | - $this->authorize( 'admin' ); | |
| 40 | +		if (config('shop.authorize', true)) { | |
| 41 | +			$this->authorize('admin'); | |
| 42 | 42 | } | 
| 43 | 43 | |
| 44 | 44 | $status = 500; | 
| 45 | 45 | $header = $request->headers->all(); | 
| 46 | 46 | |
| 47 | 47 | $client = $this->createClient(); | 
| 48 | - $result = $client->delete( (string) $request->getContent(), $header, $status ); | |
| 48 | + $result = $client->delete((string) $request->getContent(), $header, $status); | |
| 49 | 49 | |
| 50 | - return $this->createResponse( $result, $status, $header ); | |
| 50 | + return $this->createResponse($result, $status, $header); | |
| 51 | 51 | } | 
| 52 | 52 | |
| 53 | 53 | |
| @@ -57,19 +57,19 @@ discard block | ||
| 57 | 57 | * @param \Illuminate\Http\Request $request Request object | 
| 58 | 58 | * @return \Illuminate\Http\Response Response object containing the generated output | 
| 59 | 59 | */ | 
| 60 | - public function getAction( Request $request ) | |
| 60 | + public function getAction(Request $request) | |
| 61 | 61 |  	{ | 
| 62 | -		if( config( 'shop.authorize', true ) ) { | |
| 63 | - $this->authorize( 'admin' ); | |
| 62 | +		if (config('shop.authorize', true)) { | |
| 63 | +			$this->authorize('admin'); | |
| 64 | 64 | } | 
| 65 | 65 | |
| 66 | 66 | $status = 500; | 
| 67 | 67 | $header = $request->headers->all(); | 
| 68 | 68 | |
| 69 | 69 | $client = $this->createClient(); | 
| 70 | - $result = $client->get( (string) $request->getContent(), $header, $status ); | |
| 70 | + $result = $client->get((string) $request->getContent(), $header, $status); | |
| 71 | 71 | |
| 72 | - return $this->createResponse( $result, $status, $header ); | |
| 72 | + return $this->createResponse($result, $status, $header); | |
| 73 | 73 | } | 
| 74 | 74 | |
| 75 | 75 | |
| @@ -79,19 +79,19 @@ discard block | ||
| 79 | 79 | * @param \Illuminate\Http\Request $request Request object | 
| 80 | 80 | * @return \Illuminate\Http\Response Response object containing the generated output | 
| 81 | 81 | */ | 
| 82 | - public function patchAction( Request $request ) | |
| 82 | + public function patchAction(Request $request) | |
| 83 | 83 |  	{ | 
| 84 | -		if( config( 'shop.authorize', true ) ) { | |
| 85 | - $this->authorize( 'admin' ); | |
| 84 | +		if (config('shop.authorize', true)) { | |
| 85 | +			$this->authorize('admin'); | |
| 86 | 86 | } | 
| 87 | 87 | |
| 88 | 88 | $status = 500; | 
| 89 | 89 | $header = $request->headers->all(); | 
| 90 | 90 | |
| 91 | 91 | $client = $this->createClient(); | 
| 92 | - $result = $client->patch( (string) $request->getContent(), $header, $status ); | |
| 92 | + $result = $client->patch((string) $request->getContent(), $header, $status); | |
| 93 | 93 | |
| 94 | - return $this->createResponse( $result, $status, $header ); | |
| 94 | + return $this->createResponse($result, $status, $header); | |
| 95 | 95 | } | 
| 96 | 96 | |
| 97 | 97 | |
| @@ -101,19 +101,19 @@ discard block | ||
| 101 | 101 | * @param \Illuminate\Http\Request $request Request object | 
| 102 | 102 | * @return \Illuminate\Http\Response Response object containing the generated output | 
| 103 | 103 | */ | 
| 104 | - public function postAction( Request $request ) | |
| 104 | + public function postAction(Request $request) | |
| 105 | 105 |  	{ | 
| 106 | -		if( config( 'shop.authorize', true ) ) { | |
| 107 | - $this->authorize( 'admin' ); | |
| 106 | +		if (config('shop.authorize', true)) { | |
| 107 | +			$this->authorize('admin'); | |
| 108 | 108 | } | 
| 109 | 109 | |
| 110 | 110 | $status = 500; | 
| 111 | 111 | $header = $request->headers->all(); | 
| 112 | 112 | |
| 113 | 113 | $client = $this->createClient(); | 
| 114 | - $result = $client->post( (string) $request->getContent(), $header, $status ); | |
| 114 | + $result = $client->post((string) $request->getContent(), $header, $status); | |
| 115 | 115 | |
| 116 | - return $this->createResponse( $result, $status, $header ); | |
| 116 | + return $this->createResponse($result, $status, $header); | |
| 117 | 117 | } | 
| 118 | 118 | |
| 119 | 119 | |
| @@ -123,19 +123,19 @@ discard block | ||
| 123 | 123 | * @param \Illuminate\Http\Request $request Request object | 
| 124 | 124 | * @return \Illuminate\Http\Response Response object containing the generated output | 
| 125 | 125 | */ | 
| 126 | - public function putAction( Request $request ) | |
| 126 | + public function putAction(Request $request) | |
| 127 | 127 |  	{ | 
| 128 | -		if( config( 'shop.authorize', true ) ) { | |
| 129 | - $this->authorize( 'admin' ); | |
| 128 | +		if (config('shop.authorize', true)) { | |
| 129 | +			$this->authorize('admin'); | |
| 130 | 130 | } | 
| 131 | 131 | |
| 132 | 132 | $status = 500; | 
| 133 | 133 | $header = $request->headers->all(); | 
| 134 | 134 | |
| 135 | 135 | $client = $this->createClient(); | 
| 136 | - $result = $client->put( (string) $request->getContent(), $header, $status ); | |
| 136 | + $result = $client->put((string) $request->getContent(), $header, $status); | |
| 137 | 137 | |
| 138 | - return $this->createResponse( $result, $status, $header ); | |
| 138 | + return $this->createResponse($result, $status, $header); | |
| 139 | 139 | } | 
| 140 | 140 | |
| 141 | 141 | |
| @@ -145,19 +145,19 @@ discard block | ||
| 145 | 145 | * @param \Illuminate\Http\Request $request Request object | 
| 146 | 146 | * @return \Illuminate\Http\Response Response object containing the generated output | 
| 147 | 147 | */ | 
| 148 | - public function optionsAction( Request $request ) | |
| 148 | + public function optionsAction(Request $request) | |
| 149 | 149 |  	{ | 
| 150 | -		if( config( 'shop.authorize', true ) ) { | |
| 151 | - $this->authorize( 'admin' ); | |
| 150 | +		if (config('shop.authorize', true)) { | |
| 151 | +			$this->authorize('admin'); | |
| 152 | 152 | } | 
| 153 | 153 | |
| 154 | 154 | $status = 500; | 
| 155 | 155 | $header = $request->headers->all(); | 
| 156 | 156 | |
| 157 | 157 | $client = $this->createClient(); | 
| 158 | - $result = $client->options( (string) $request->getContent(), $header, $status ); | |
| 158 | + $result = $client->options((string) $request->getContent(), $header, $status); | |
| 159 | 159 | |
| 160 | - return $this->createResponse( $result, $status, $header ); | |
| 160 | + return $this->createResponse($result, $status, $header); | |
| 161 | 161 | } | 
| 162 | 162 | |
| 163 | 163 | |
| @@ -168,20 +168,20 @@ discard block | ||
| 168 | 168 | */ | 
| 169 | 169 | protected function createClient() | 
| 170 | 170 |  	{ | 
| 171 | - $site = Route::input( 'site', Input::get( 'site', 'default' ) ); | |
| 172 | - $lang = Input::get( 'lang', config( 'app.locale', 'en' ) ); | |
| 173 | - $resource = Route::input( 'resource' ); | |
| 171 | +		$site = Route::input('site', Input::get('site', 'default')); | |
| 172 | +		$lang = Input::get('lang', config('app.locale', 'en')); | |
| 173 | +		$resource = Route::input('resource'); | |
| 174 | 174 | |
| 175 | - $aimeos = app( '\Aimeos\Shop\Base\Aimeos' )->get(); | |
| 176 | - $templatePaths = $aimeos->getCustomPaths( 'admin/jsonadm/templates' ); | |
| 175 | +		$aimeos = app('\Aimeos\Shop\Base\Aimeos')->get(); | |
| 176 | +		$templatePaths = $aimeos->getCustomPaths('admin/jsonadm/templates'); | |
| 177 | 177 | |
| 178 | - $context = app( '\Aimeos\Shop\Base\Context' )->get( false ); | |
| 179 | - $context = $this->setLocale( $context, $site, $lang ); | |
| 178 | +		$context = app('\Aimeos\Shop\Base\Context')->get(false); | |
| 179 | + $context = $this->setLocale($context, $site, $lang); | |
| 180 | 180 | |
| 181 | - $view = app( '\Aimeos\Shop\Base\View' )->create( $context->getConfig(), $templatePaths, $lang ); | |
| 182 | - $context->setView( $view ); | |
| 181 | +		$view = app('\Aimeos\Shop\Base\View')->create($context->getConfig(), $templatePaths, $lang); | |
| 182 | + $context->setView($view); | |
| 183 | 183 | |
| 184 | - return \Aimeos\Admin\JsonAdm\Factory::createClient( $context, $templatePaths, $resource ); | |
| 184 | + return \Aimeos\Admin\JsonAdm\Factory::createClient($context, $templatePaths, $resource); | |
| 185 | 185 | } | 
| 186 | 186 | |
| 187 | 187 | |
| @@ -193,12 +193,12 @@ discard block | ||
| 193 | 193 | * @param array $header List of HTTP headers | 
| 194 | 194 | * @return \Illuminate\Http\Response HTTP response object | 
| 195 | 195 | */ | 
| 196 | - protected function createResponse( $content, $status, array $header ) | |
| 196 | + protected function createResponse($content, $status, array $header) | |
| 197 | 197 |  	{ | 
| 198 | - $response = Response::make( $content, $status ); | |
| 198 | + $response = Response::make($content, $status); | |
| 199 | 199 | |
| 200 | -		foreach( $header as $key => $value ) { | |
| 201 | - $response->header( $key, $value ); | |
| 200 | +		foreach ($header as $key => $value) { | |
| 201 | + $response->header($key, $value); | |
| 202 | 202 | } | 
| 203 | 203 | |
| 204 | 204 | return $response; | 
| @@ -213,23 +213,23 @@ discard block | ||
| 213 | 213 | * @param string $lang ISO language code, e.g. "en" or "en_GB" | 
| 214 | 214 | * @return \Aimeos\MShop\Context\Item\Iface Modified context object | 
| 215 | 215 | */ | 
| 216 | - protected function setLocale( \Aimeos\MShop\Context\Item\Iface $context, $sitecode, $lang ) | |
| 216 | + protected function setLocale(\Aimeos\MShop\Context\Item\Iface $context, $sitecode, $lang) | |
| 217 | 217 |  	{ | 
| 218 | - $localeManager = \Aimeos\MShop\Factory::createManager( $context, 'locale' ); | |
| 218 | + $localeManager = \Aimeos\MShop\Factory::createManager($context, 'locale'); | |
| 219 | 219 | |
| 220 | 220 | try | 
| 221 | 221 |  		{ | 
| 222 | - $localeItem = $localeManager->bootstrap( $sitecode, '', '', false ); | |
| 223 | - $localeItem->setLanguageId( null ); | |
| 224 | - $localeItem->setCurrencyId( null ); | |
| 222 | + $localeItem = $localeManager->bootstrap($sitecode, '', '', false); | |
| 223 | + $localeItem->setLanguageId(null); | |
| 224 | + $localeItem->setCurrencyId(null); | |
| 225 | 225 | } | 
| 226 | - catch( \Aimeos\MShop\Locale\Exception $e ) | |
| 226 | + catch (\Aimeos\MShop\Locale\Exception $e) | |
| 227 | 227 |  		{ | 
| 228 | 228 | $localeItem = $localeManager->createItem(); | 
| 229 | 229 | } | 
| 230 | 230 | |
| 231 | - $context->setLocale( $localeItem ); | |
| 232 | -		$context->setI18n( app('\Aimeos\Shop\Base\I18n')->get( array( $lang ) ) ); | |
| 231 | + $context->setLocale($localeItem); | |
| 232 | +		$context->setI18n(app('\Aimeos\Shop\Base\I18n')->get(array($lang))); | |
| 233 | 233 | |
| 234 | 234 | return $context; | 
| 235 | 235 | } |