@@ -4,32 +4,32 @@ discard block |
||
4 | 4 | { |
5 | 5 | public function testFileActionCss() |
6 | 6 | { |
7 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
7 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
8 | 8 | |
9 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@fileAction', ['site' => 'unittest', 'type' => 'css']); |
|
9 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@fileAction', ['site' => 'unittest', 'type' => 'css'] ); |
|
10 | 10 | |
11 | 11 | $this->assertResponseOk(); |
12 | - $this->assertContains('.aimeos', $response->getContent()); |
|
12 | + $this->assertContains( '.aimeos', $response->getContent() ); |
|
13 | 13 | } |
14 | 14 | |
15 | 15 | |
16 | 16 | public function testFileActionJs() |
17 | 17 | { |
18 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
18 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
19 | 19 | |
20 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@fileAction', ['site' => 'unittest', 'type' => 'js']); |
|
20 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@fileAction', ['site' => 'unittest', 'type' => 'js'] ); |
|
21 | 21 | |
22 | 22 | $this->assertResponseOk(); |
23 | - $this->assertContains('Aimeos = {', $response->getContent()); |
|
23 | + $this->assertContains( 'Aimeos = {', $response->getContent() ); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | |
27 | 27 | public function testCopyAction() |
28 | 28 | { |
29 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
29 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
30 | 30 | |
31 | 31 | $params = ['site' => 'unittest', 'resource' => 'product', 'id' => '0']; |
32 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@copyAction', $params); |
|
32 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@copyAction', $params ); |
|
33 | 33 | |
34 | 34 | $this->assertEquals( 200, $response->getStatusCode() ); |
35 | 35 | $this->assertContains( 'item-product', $response->getContent() ); |
@@ -38,10 +38,10 @@ discard block |
||
38 | 38 | |
39 | 39 | public function testCreateAction() |
40 | 40 | { |
41 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
41 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
42 | 42 | |
43 | 43 | $params = ['site' => 'unittest', 'resource' => 'product']; |
44 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@createAction', $params); |
|
44 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@createAction', $params ); |
|
45 | 45 | |
46 | 46 | $this->assertEquals( 200, $response->getStatusCode() ); |
47 | 47 | $this->assertContains( 'item-product', $response->getContent() ); |
@@ -50,10 +50,10 @@ discard block |
||
50 | 50 | |
51 | 51 | public function testDeleteAction() |
52 | 52 | { |
53 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
53 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
54 | 54 | |
55 | 55 | $params = ['site' => 'unittest', 'resource' => 'product', 'id' => '0']; |
56 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@deleteAction', $params); |
|
56 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@deleteAction', $params ); |
|
57 | 57 | |
58 | 58 | $this->assertEquals( 200, $response->getStatusCode() ); |
59 | 59 | $this->assertContains( 'list-items', $response->getContent() ); |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | |
63 | 63 | public function testExportAction() |
64 | 64 | { |
65 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
65 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
66 | 66 | |
67 | 67 | $params = ['site' => 'unittest', 'resource' => 'order']; |
68 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@exportAction', $params); |
|
68 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@exportAction', $params ); |
|
69 | 69 | |
70 | 70 | $this->assertEquals( 200, $response->getStatusCode() ); |
71 | 71 | $this->assertContains( 'list-items', $response->getContent() ); |
@@ -74,10 +74,10 @@ discard block |
||
74 | 74 | |
75 | 75 | public function testGetAction() |
76 | 76 | { |
77 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
77 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
78 | 78 | |
79 | 79 | $params = ['site' => 'unittest', 'resource' => 'product', 'id' => '0']; |
80 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@getAction', $params); |
|
80 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@getAction', $params ); |
|
81 | 81 | |
82 | 82 | $this->assertEquals( 200, $response->getStatusCode() ); |
83 | 83 | $this->assertContains( 'item-product', $response->getContent() ); |
@@ -86,10 +86,10 @@ discard block |
||
86 | 86 | |
87 | 87 | public function testSaveAction() |
88 | 88 | { |
89 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
89 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
90 | 90 | |
91 | 91 | $params = ['site' => 'unittest', 'resource' => 'product', 'id' => '0']; |
92 | - $response = $this->action('POST', '\Aimeos\Shop\Controller\JqadmController@saveAction', $params); |
|
92 | + $response = $this->action( 'POST', '\Aimeos\Shop\Controller\JqadmController@saveAction', $params ); |
|
93 | 93 | |
94 | 94 | $this->assertEquals( 200, $response->getStatusCode() ); |
95 | 95 | $this->assertContains( 'item-product', $response->getContent() ); |
@@ -98,10 +98,10 @@ discard block |
||
98 | 98 | |
99 | 99 | public function testSearchAction() |
100 | 100 | { |
101 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
101 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
102 | 102 | |
103 | 103 | $params = ['site' => 'unittest', 'resource' => 'product']; |
104 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@searchAction', $params); |
|
104 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@searchAction', $params ); |
|
105 | 105 | |
106 | 106 | $this->assertEquals( 200, $response->getStatusCode() ); |
107 | 107 | $this->assertContains( 'list-items', $response->getContent() ); |
@@ -110,10 +110,10 @@ discard block |
||
110 | 110 | |
111 | 111 | public function testSearchActionSite() |
112 | 112 | { |
113 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
113 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
114 | 114 | |
115 | 115 | $params = ['site' => 'invalid', 'resource' => 'product']; |
116 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\JqadmController@searchAction', $params); |
|
116 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\JqadmController@searchAction', $params ); |
|
117 | 117 | |
118 | 118 | $this->assertEquals( 500, $response->getStatusCode() ); |
119 | 119 | } |
@@ -4,12 +4,12 @@ |
||
4 | 4 | { |
5 | 5 | public function testActions() |
6 | 6 | { |
7 | - View::addLocation(dirname(__DIR__).'/fixtures/views'); |
|
7 | + View::addLocation( dirname( __DIR__ ) . '/fixtures/views' ); |
|
8 | 8 | |
9 | - $response = $this->action('GET', '\Aimeos\Shop\Controller\BasketController@indexAction', ['site' => 'unittest']); |
|
9 | + $response = $this->action( 'GET', '\Aimeos\Shop\Controller\BasketController@indexAction', ['site' => 'unittest'] ); |
|
10 | 10 | |
11 | 11 | $this->assertResponseOk(); |
12 | - $this->assertContains('<section class="aimeos basket-standard"', $response->getContent()); |
|
13 | - $this->assertContains('<section class="aimeos basket-related"', $response->getContent()); |
|
12 | + $this->assertContains( '<section class="aimeos basket-standard"', $response->getContent() ); |
|
13 | + $this->assertContains( '<section class="aimeos basket-related"', $response->getContent() ); |
|
14 | 14 | } |
15 | 15 | } |
16 | 16 | \ No newline at end of file |
@@ -2,31 +2,31 @@ discard block |
||
2 | 2 | |
3 | 3 | class AimeosTestAbstract extends Orchestra\Testbench\BrowserKit\TestCase |
4 | 4 | { |
5 | - protected function getEnvironmentSetUp($app) |
|
5 | + protected function getEnvironmentSetUp( $app ) |
|
6 | 6 | { |
7 | 7 | putenv( 'APP_DEBUG=1' ); |
8 | 8 | |
9 | - $app['config']->set('app.key', 'SomeRandomStringWith32Characters'); |
|
10 | - $app['config']->set('app.cipher', 'AES-256-CBC'); |
|
9 | + $app['config']->set( 'app.key', 'SomeRandomStringWith32Characters' ); |
|
10 | + $app['config']->set( 'app.cipher', 'AES-256-CBC' ); |
|
11 | 11 | |
12 | - $app['config']->set('database.default', 'mysql'); |
|
13 | - $app['config']->set('database.connections.mysql', [ |
|
12 | + $app['config']->set( 'database.default', 'mysql' ); |
|
13 | + $app['config']->set( 'database.connections.mysql', [ |
|
14 | 14 | 'driver' => 'mysql', |
15 | - 'host' => env('DB_HOST', '127.0.0.1'), |
|
16 | - 'port' => env('DB_PORT', '3306'), |
|
17 | - 'database' => env('DB_DATABASE', 'laravel'), |
|
18 | - 'username' => env('DB_USERNAME', 'root'), |
|
19 | - 'password' => env('DB_PASSWORD', ''), |
|
20 | - 'unix_socket' => env('DB_SOCKET', ''), |
|
15 | + 'host' => env( 'DB_HOST', '127.0.0.1' ), |
|
16 | + 'port' => env( 'DB_PORT', '3306' ), |
|
17 | + 'database' => env( 'DB_DATABASE', 'laravel' ), |
|
18 | + 'username' => env( 'DB_USERNAME', 'root' ), |
|
19 | + 'password' => env( 'DB_PASSWORD', '' ), |
|
20 | + 'unix_socket' => env( 'DB_SOCKET', '' ), |
|
21 | 21 | 'collation' => 'utf8_unicode_ci', |
22 | - ]); |
|
22 | + ] ); |
|
23 | 23 | |
24 | - $app['config']->set('shop.resource.db', [ |
|
24 | + $app['config']->set( 'shop.resource.db', [ |
|
25 | 25 | 'adapter' => 'mysql', |
26 | - 'host' => env('DB_HOST', 'localhost'), |
|
27 | - 'database' => env('DB_DATABASE', 'laravel'), |
|
28 | - 'username' => env('DB_USERNAME', 'root'), |
|
29 | - 'password' => env('DB_PASSWORD', ''), |
|
26 | + 'host' => env( 'DB_HOST', 'localhost' ), |
|
27 | + 'database' => env( 'DB_DATABASE', 'laravel' ), |
|
28 | + 'username' => env( 'DB_USERNAME', 'root' ), |
|
29 | + 'password' => env( 'DB_PASSWORD', '' ), |
|
30 | 30 | 'stmt' => ["SET SESSION sort_buffer_size=2097144; SET SESSION sql_mode='ANSI'; SET NAMES 'utf8_bin'"], |
31 | 31 | 'opt-persistent' => 0, |
32 | 32 | 'limit' => 3, |
@@ -34,23 +34,23 @@ discard block |
||
34 | 34 | 'collate' => 'utf8_unicode_ci', |
35 | 35 | 'charset' => 'utf8', |
36 | 36 | ], |
37 | - ]); |
|
37 | + ] ); |
|
38 | 38 | |
39 | - $app['config']->set('shop.authorize', false); |
|
40 | - $app['config']->set('shop.disableSites', false); |
|
41 | - $app['config']->set('shop.accessControl', false); |
|
42 | - $app['config']->set('shop.routes.jqadm', ['prefix' => '{site}/jqadm']); |
|
43 | - $app['config']->set('shop.routes.jsonadm', ['prefix' => '{site}/jsonadm']); |
|
44 | - $app['config']->set('shop.routes.jsonapi', ['prefix' => '{site}/jsonapi']); |
|
45 | - $app['config']->set('shop.routes.account', ['prefix' => '{site}/myaccount']); |
|
46 | - $app['config']->set('shop.routes.default', ['prefix' => '{site}/shop']); |
|
47 | - $app['config']->set('shop.routes.update', ['prefix' => '{site}']); |
|
48 | - $app['config']->set('shop.routes.login', []); |
|
49 | - $app['config']->set('shop.extdir', dirname( __DIR__ ) . DIRECTORY_SEPARATOR . 'ext' ); |
|
39 | + $app['config']->set( 'shop.authorize', false ); |
|
40 | + $app['config']->set( 'shop.disableSites', false ); |
|
41 | + $app['config']->set( 'shop.accessControl', false ); |
|
42 | + $app['config']->set( 'shop.routes.jqadm', ['prefix' => '{site}/jqadm'] ); |
|
43 | + $app['config']->set( 'shop.routes.jsonadm', ['prefix' => '{site}/jsonadm'] ); |
|
44 | + $app['config']->set( 'shop.routes.jsonapi', ['prefix' => '{site}/jsonapi'] ); |
|
45 | + $app['config']->set( 'shop.routes.account', ['prefix' => '{site}/myaccount'] ); |
|
46 | + $app['config']->set( 'shop.routes.default', ['prefix' => '{site}/shop'] ); |
|
47 | + $app['config']->set( 'shop.routes.update', ['prefix' => '{site}'] ); |
|
48 | + $app['config']->set( 'shop.routes.login', [] ); |
|
49 | + $app['config']->set( 'shop.extdir', dirname( __DIR__ ) . DIRECTORY_SEPARATOR . 'ext' ); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | |
53 | - protected function getPackageProviders($app) |
|
53 | + protected function getPackageProviders( $app ) |
|
54 | 54 | { |
55 | 55 | return ['Aimeos\Shop\ShopServiceProvider']; |
56 | 56 | } |
@@ -1,226 +1,226 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -Route::group(config('shop.routes.admin', ['prefix' => 'admin', 'middleware' => ['web']]), function() { |
|
3 | +Route::group( config( 'shop.routes.admin', ['prefix' => 'admin', 'middleware' => ['web']] ), function() { |
|
4 | 4 | |
5 | 5 | Route::match( array( 'GET' ), '', array( |
6 | 6 | 'as' => 'aimeos_shop_admin', |
7 | 7 | 'uses' => 'Aimeos\Shop\Controller\AdminController@indexAction' |
8 | - )); |
|
8 | + ) ); |
|
9 | 9 | |
10 | 10 | }); |
11 | 11 | |
12 | 12 | |
13 | -Route::group(config('shop.routes.jqadm', ['prefix' => 'admin/{site}/jqadm', 'middleware' => ['web', 'auth']]), function() { |
|
13 | +Route::group( config( 'shop.routes.jqadm', ['prefix' => 'admin/{site}/jqadm', 'middleware' => ['web', 'auth']] ), function() { |
|
14 | 14 | |
15 | 15 | Route::match( array( 'GET' ), 'file/{type}', array( |
16 | 16 | 'as' => 'aimeos_shop_jqadm_file', |
17 | 17 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@fileAction' |
18 | - )); |
|
18 | + ) ); |
|
19 | 19 | |
20 | 20 | Route::match( array( 'GET', 'POST' ), 'copy/{resource}/{id}', array( |
21 | 21 | 'as' => 'aimeos_shop_jqadm_copy', |
22 | 22 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@copyAction' |
23 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
23 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
24 | 24 | |
25 | 25 | Route::match( array( 'GET', 'POST' ), 'create/{resource}', array( |
26 | 26 | 'as' => 'aimeos_shop_jqadm_create', |
27 | 27 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@createAction' |
28 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
28 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
29 | 29 | |
30 | 30 | Route::match( array( 'GET', 'POST' ), 'delete/{resource}/{id}', array( |
31 | 31 | 'as' => 'aimeos_shop_jqadm_delete', |
32 | 32 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@deleteAction' |
33 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
33 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
34 | 34 | |
35 | 35 | Route::match( array( 'GET', 'POST' ), 'export/{resource}', array( |
36 | 36 | 'as' => 'aimeos_shop_jqadm_export', |
37 | 37 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@exportAction' |
38 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
38 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
39 | 39 | |
40 | 40 | Route::match( array( 'GET' ), 'get/{resource}/{id}', array( |
41 | 41 | 'as' => 'aimeos_shop_jqadm_get', |
42 | 42 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@getAction' |
43 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
43 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
44 | 44 | |
45 | 45 | Route::match( array( 'POST' ), 'save/{resource}', array( |
46 | 46 | 'as' => 'aimeos_shop_jqadm_save', |
47 | 47 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@saveAction' |
48 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
48 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
49 | 49 | |
50 | 50 | Route::match( array( 'GET', 'POST' ), 'search/{resource}', array( |
51 | 51 | 'as' => 'aimeos_shop_jqadm_search', |
52 | 52 | 'uses' => 'Aimeos\Shop\Controller\JqadmController@searchAction' |
53 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
53 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
54 | 54 | |
55 | 55 | }); |
56 | 56 | |
57 | 57 | |
58 | -Route::group(config('shop.routes.jsonadm', ['prefix' => 'admin/{site}/jsonadm', 'middleware' => ['web', 'auth']]), function() { |
|
58 | +Route::group( config( 'shop.routes.jsonadm', ['prefix' => 'admin/{site}/jsonadm', 'middleware' => ['web', 'auth']] ), function() { |
|
59 | 59 | |
60 | 60 | Route::match( array( 'DELETE' ), '{resource}/{id?}', array( |
61 | 61 | 'as' => 'aimeos_shop_jsonadm_delete', |
62 | 62 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@deleteAction' |
63 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
63 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
64 | 64 | |
65 | 65 | Route::match( array( 'GET' ), '{resource}/{id?}', array( |
66 | 66 | 'as' => 'aimeos_shop_jsonadm_get', |
67 | 67 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@getAction' |
68 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
68 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
69 | 69 | |
70 | 70 | Route::match( array( 'PATCH' ), '{resource}/{id?}', array( |
71 | 71 | 'as' => 'aimeos_shop_jsonadm_patch', |
72 | 72 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@patchAction' |
73 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
73 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
74 | 74 | |
75 | 75 | Route::match( array( 'POST' ), '{resource}/{id?}', array( |
76 | 76 | 'as' => 'aimeos_shop_jsonadm_post', |
77 | 77 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@postAction' |
78 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
78 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
79 | 79 | |
80 | 80 | Route::match( array( 'PUT' ), '{resource}/{id?}', array( |
81 | 81 | 'as' => 'aimeos_shop_jsonadm_put', |
82 | 82 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@putAction' |
83 | - ))->where( array( 'resource' => '[a-z\/]+' ) ); |
|
83 | + ) )->where( array( 'resource' => '[a-z\/]+' ) ); |
|
84 | 84 | |
85 | 85 | Route::match( array( 'OPTIONS' ), '{resource?}', array( |
86 | 86 | 'as' => 'aimeos_shop_jsonadm_options', |
87 | 87 | 'uses' => 'Aimeos\Shop\Controller\JsonadmController@optionsAction' |
88 | - ))->where( array( 'resource' => '[a-z\/]*' ) ); |
|
88 | + ) )->where( array( 'resource' => '[a-z\/]*' ) ); |
|
89 | 89 | |
90 | 90 | }); |
91 | 91 | |
92 | 92 | |
93 | -Route::group(config('shop.routes.jsonapi', ['prefix' => 'jsonapi', 'middleware' => ['web', 'api']]), function() { |
|
93 | +Route::group( config( 'shop.routes.jsonapi', ['prefix' => 'jsonapi', 'middleware' => ['web', 'api']] ), function() { |
|
94 | 94 | |
95 | 95 | Route::match( array( 'DELETE' ), '{resource}', array( |
96 | 96 | 'as' => 'aimeos_shop_jsonapi_delete', |
97 | 97 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@deleteAction' |
98 | - )); |
|
98 | + ) ); |
|
99 | 99 | |
100 | 100 | Route::match( array( 'GET' ), '{resource}', array( |
101 | 101 | 'as' => 'aimeos_shop_jsonapi_get', |
102 | 102 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@getAction' |
103 | - )); |
|
103 | + ) ); |
|
104 | 104 | |
105 | 105 | Route::match( array( 'PATCH' ), '{resource}', array( |
106 | 106 | 'as' => 'aimeos_shop_jsonapi_patch', |
107 | 107 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@patchAction' |
108 | - )); |
|
108 | + ) ); |
|
109 | 109 | |
110 | 110 | Route::match( array( 'POST' ), '{resource}', array( |
111 | 111 | 'as' => 'aimeos_shop_jsonapi_post', |
112 | 112 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@postAction' |
113 | - )); |
|
113 | + ) ); |
|
114 | 114 | |
115 | 115 | Route::match( array( 'PUT' ), '{resource}', array( |
116 | 116 | 'as' => 'aimeos_shop_jsonapi_put', |
117 | 117 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@putAction' |
118 | - )); |
|
118 | + ) ); |
|
119 | 119 | |
120 | 120 | Route::match( array( 'OPTIONS' ), '{resource?}', array( |
121 | 121 | 'as' => 'aimeos_shop_jsonapi_options', |
122 | 122 | 'uses' => 'Aimeos\Shop\Controller\JsonapiController@optionsAction' |
123 | - )); |
|
123 | + ) ); |
|
124 | 124 | |
125 | 125 | }); |
126 | 126 | |
127 | 127 | |
128 | -Route::get('terms', array( |
|
128 | +Route::get( 'terms', array( |
|
129 | 129 | 'as' => 'aimeos_shop_terms', |
130 | 130 | 'uses' => 'Aimeos\Shop\Controller\PageController@termsAction' |
131 | -)); |
|
131 | +) ); |
|
132 | 132 | |
133 | -Route::get('privacy', array( |
|
133 | +Route::get( 'privacy', array( |
|
134 | 134 | 'as' => 'aimeos_shop_privacy', |
135 | 135 | 'uses' => 'Aimeos\Shop\Controller\PageController@privacyAction' |
136 | -)); |
|
136 | +) ); |
|
137 | 137 | |
138 | 138 | |
139 | -Route::group(config('shop.routes.update', []), function() { |
|
139 | +Route::group( config( 'shop.routes.update', [] ), function() { |
|
140 | 140 | |
141 | 141 | Route::match( array( 'GET', 'POST' ), 'update', array( |
142 | 142 | 'as' => 'aimeos_shop_update', |
143 | 143 | 'uses' => 'Aimeos\Shop\Controller\CheckoutController@updateAction' |
144 | - )); |
|
144 | + ) ); |
|
145 | 145 | |
146 | 146 | }); |
147 | 147 | |
148 | 148 | |
149 | -Route::group(config('shop.routes.account', ['prefix' => 'myaccount', 'middleware' => ['web', 'auth']]), function() { |
|
149 | +Route::group( config( 'shop.routes.account', ['prefix' => 'myaccount', 'middleware' => ['web', 'auth']] ), function() { |
|
150 | 150 | |
151 | 151 | Route::match( array( 'GET', 'POST' ), 'favorite/{fav_action?}/{fav_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
152 | 152 | 'as' => 'aimeos_shop_account_favorite', |
153 | 153 | 'uses' => 'Aimeos\Shop\Controller\AccountController@indexAction' |
154 | - )); |
|
154 | + ) ); |
|
155 | 155 | |
156 | 156 | Route::match( array( 'GET', 'POST' ), 'watch/{wat_action?}/{wat_id?}/{d_prodid?}/{d_name?}/{d_pos?}', array( |
157 | 157 | 'as' => 'aimeos_shop_account_watch', |
158 | 158 | 'uses' => 'Aimeos\Shop\Controller\AccountController@indexAction' |
159 | - )); |
|
159 | + ) ); |
|
160 | 160 | |
161 | 161 | Route::match( array( 'GET', 'POST' ), 'download/{dl_id}', array( |
162 | 162 | 'as' => 'aimeos_shop_account_download', |
163 | 163 | 'uses' => 'Aimeos\Shop\Controller\AccountController@downloadAction' |
164 | - )); |
|
164 | + ) ); |
|
165 | 165 | |
166 | 166 | Route::match( array( 'GET', 'POST' ), '', array( |
167 | 167 | 'as' => 'aimeos_shop_account', |
168 | 168 | 'uses' => 'Aimeos\Shop\Controller\AccountController@indexAction' |
169 | - )); |
|
169 | + ) ); |
|
170 | 170 | |
171 | 171 | }); |
172 | 172 | |
173 | 173 | |
174 | -Route::group(config('shop.routes.default', ['prefix' => 'shop', 'middleware' => ['web']]), function() { |
|
174 | +Route::group( config( 'shop.routes.default', ['prefix' => 'shop', 'middleware' => ['web']] ), function() { |
|
175 | 175 | |
176 | 176 | Route::match( array( 'GET', 'POST' ), 'count', array( |
177 | 177 | 'as' => 'aimeos_shop_count', |
178 | 178 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@countAction' |
179 | - )); |
|
179 | + ) ); |
|
180 | 180 | |
181 | 181 | Route::match( array( 'GET', 'POST' ), 'suggest', array( |
182 | 182 | 'as' => 'aimeos_shop_suggest', |
183 | 183 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@suggestAction' |
184 | - )); |
|
184 | + ) ); |
|
185 | 185 | |
186 | 186 | Route::match( array( 'GET', 'POST' ), 'stock', array( |
187 | 187 | 'as' => 'aimeos_shop_stock', |
188 | 188 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@stockAction' |
189 | - )); |
|
189 | + ) ); |
|
190 | 190 | |
191 | 191 | Route::match( array( 'GET', 'POST' ), 'basket', array( |
192 | 192 | 'as' => 'aimeos_shop_basket', |
193 | 193 | 'uses' => 'Aimeos\Shop\Controller\BasketController@indexAction' |
194 | - )); |
|
194 | + ) ); |
|
195 | 195 | |
196 | 196 | Route::match( array( 'GET', 'POST' ), 'checkout/{c_step?}', array( |
197 | 197 | 'as' => 'aimeos_shop_checkout', |
198 | 198 | 'uses' => 'Aimeos\Shop\Controller\CheckoutController@indexAction' |
199 | - )); |
|
199 | + ) ); |
|
200 | 200 | |
201 | 201 | Route::match( array( 'GET', 'POST' ), 'confirm/{code?}', array( |
202 | 202 | 'as' => 'aimeos_shop_confirm', |
203 | 203 | 'uses' => 'Aimeos\Shop\Controller\CheckoutController@confirmAction' |
204 | - )); |
|
204 | + ) ); |
|
205 | 205 | |
206 | 206 | Route::match( array( 'GET', 'POST' ), 'pin/{pin_action}/{pin_id}/{d_name}', array( |
207 | 207 | 'as' => 'aimeos_shop_session_pinned', |
208 | 208 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@detailAction' |
209 | - )); |
|
209 | + ) ); |
|
210 | 210 | |
211 | 211 | Route::match( array( 'GET', 'POST' ), '{f_name}~{f_catid}', array( |
212 | 212 | 'as' => 'aimeos_shop_tree', |
213 | 213 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@treeAction' |
214 | - )); |
|
214 | + ) ); |
|
215 | 215 | |
216 | 216 | Route::match( array( 'GET', 'POST' ), '{d_name}/{d_pos?}', array( |
217 | 217 | 'as' => 'aimeos_shop_detail', |
218 | 218 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@detailAction' |
219 | - )); |
|
219 | + ) ); |
|
220 | 220 | |
221 | 221 | Route::match( array( 'GET', 'POST' ), '', array( |
222 | 222 | 'as' => 'aimeos_shop_list', |
223 | 223 | 'uses' => 'Aimeos\Shop\Controller\CatalogController@listAction' |
224 | - )); |
|
224 | + ) ); |
|
225 | 225 | |
226 | 226 | }); |
@@ -110,9 +110,9 @@ |
||
110 | 110 | $params['aibody'][$name] = Shop::get( $name )->getBody(); |
111 | 111 | } |
112 | 112 | |
113 | - return Response::view('shop::catalog.suggest', $params) |
|
114 | - ->header('Cache-Control', 'private, max-age=300' ) |
|
115 | - ->header('Content-Type', 'application/json'); |
|
113 | + return Response::view( 'shop::catalog.suggest', $params ) |
|
114 | + ->header( 'Cache-Control', 'private, max-age=300' ) |
|
115 | + ->header( 'Content-Type', 'application/json' ); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 |