@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @param Response $response |
16 | 16 | * @param array $args |
17 | 17 | * |
18 | - * @return mixed |
|
18 | + * @return \Psr\Http\Message\ResponseInterface |
|
19 | 19 | */ |
20 | 20 | public function actionIndex(Request $request, Response $response, $args) |
21 | 21 | { |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @param Response $response |
88 | 88 | * @param array $args |
89 | 89 | * |
90 | - * @return mixed |
|
90 | + * @return \Psr\Http\Message\ResponseInterface |
|
91 | 91 | * @throws JsonException |
92 | 92 | */ |
93 | 93 | public function actionGet(Request $request, Response $response, $args) |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * @param Response $response |
111 | 111 | * @param array $args |
112 | 112 | * |
113 | - * @return mixed |
|
113 | + * @return \Psr\Http\Message\ResponseInterface |
|
114 | 114 | * @throws JsonException |
115 | 115 | */ |
116 | 116 | public function actionCreate(Request $request, Response $response, $args) |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * @param Response $response |
134 | 134 | * @param array $args |
135 | 135 | * |
136 | - * @return mixed |
|
136 | + * @return \Psr\Http\Message\ResponseInterface |
|
137 | 137 | * @throws JsonException |
138 | 138 | */ |
139 | 139 | public function actionUpdate(Request $request, Response $response, $args) |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | * @param Response $response |
163 | 163 | * @param array $args |
164 | 164 | * |
165 | - * @return mixed |
|
165 | + * @return \Psr\Http\Message\ResponseInterface |
|
166 | 166 | * @throws JsonException |
167 | 167 | */ |
168 | 168 | public function actionDelete(Request $request, Response $response, $args) |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $query = $query->whereNotIn($filter['attribute'], $filter['value']); |
45 | 45 | break; |
46 | 46 | case 'like': |
47 | - $query = $query->where($filter['attribute'], 'like', '%' . $filter['value'] . '%'); |
|
47 | + $query = $query->where($filter['attribute'], 'like', '%'.$filter['value'].'%'); |
|
48 | 48 | break; |
49 | 49 | case '=': |
50 | 50 | case '!=': |
@@ -97,7 +97,7 @@ |
||
97 | 97 | * @param Response $response |
98 | 98 | * @param array $args |
99 | 99 | * |
100 | - * @return mixed |
|
100 | + * @return \Psr\Http\Message\ResponseInterface |
|
101 | 101 | * @throws JsonException |
102 | 102 | */ |
103 | 103 | public function auth(Request $request, Response $response, $args) |
@@ -45,7 +45,7 @@ |
||
45 | 45 | return false; |
46 | 46 | } |
47 | 47 | return true; |
48 | - } catch (\Exception $e){ |
|
48 | + } catch (\Exception $e) { |
|
49 | 49 | return false; |
50 | 50 | } |
51 | 51 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * @param Response $response |
20 | 20 | * @param array $args |
21 | 21 | * |
22 | - * @return mixed |
|
22 | + * @return \Psr\Http\Message\ResponseInterface |
|
23 | 23 | * @throws JsonException |
24 | 24 | */ |
25 | 25 | public function actionCreate(Request $request, Response $response, $args) |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param Response $response |
49 | 49 | * @param array $args |
50 | 50 | * |
51 | - * @return mixed |
|
51 | + * @return \Psr\Http\Message\ResponseInterface |
|
52 | 52 | * @throws JsonException |
53 | 53 | */ |
54 | 54 | public function actionUpdate(Request $request, Response $response, $args) |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * @param Response $response |
81 | 81 | * @param array $args |
82 | 82 | * |
83 | - * @return mixed |
|
83 | + * @return \Psr\Http\Message\ResponseInterface |
|
84 | 84 | * @throws JsonException |
85 | 85 | */ |
86 | 86 | public function actionRequestResetPassword(Request $request, Response $response, $args) |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @param Response $response |
127 | 127 | * @param array $args |
128 | 128 | * |
129 | - * @return mixed |
|
129 | + * @return \Psr\Http\Message\ResponseInterface |
|
130 | 130 | * @throws JsonException |
131 | 131 | */ |
132 | 132 | public function actionResetPassword(Request $request, Response $response, $args) |
@@ -141,7 +141,7 @@ |
||
141 | 141 | $user->setPassword($params['data']['attributes']['password']); |
142 | 142 | $user->removePasswordResetToken(); |
143 | 143 | |
144 | - if($user->save()){ |
|
144 | + if ($user->save()) { |
|
145 | 145 | return $this->renderer->jsonApiRender($response, 204); |
146 | 146 | }; |
147 | 147 | } |
@@ -13,22 +13,22 @@ |
||
13 | 13 | }; |
14 | 14 | } |
15 | 15 | |
16 | -require __DIR__ . '/../vendor/autoload.php'; |
|
16 | +require __DIR__.'/../vendor/autoload.php'; |
|
17 | 17 | |
18 | 18 | session_start(); |
19 | 19 | |
20 | -$settings = require __DIR__ . '/../app/settings.php'; |
|
20 | +$settings = require __DIR__.'/../app/settings.php'; |
|
21 | 21 | |
22 | 22 | $app = new \Slim\App($settings); |
23 | 23 | |
24 | 24 | // Set up dependencies |
25 | -require __DIR__ . '/../app/dependencies.php'; |
|
25 | +require __DIR__.'/../app/dependencies.php'; |
|
26 | 26 | |
27 | 27 | // Register middleware |
28 | -require __DIR__ . '/../app/middleware.php'; |
|
28 | +require __DIR__.'/../app/middleware.php'; |
|
29 | 29 | |
30 | 30 | // Register routes |
31 | -require __DIR__ . '/../app/routes.php'; |
|
31 | +require __DIR__.'/../app/routes.php'; |
|
32 | 32 | |
33 | 33 | // Run! |
34 | 34 | $app->run(); |
35 | 35 | \ No newline at end of file |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | // Routes |
3 | -$app->group('/api', function () { |
|
4 | - $this->options('[/{params:.*}]', function ($request, $response, $args) { |
|
3 | +$app->group('/api', function() { |
|
4 | + $this->options('[/{params:.*}]', function($request, $response, $args) { |
|
5 | 5 | return $response->withHeader('Access-Control-Allow-Origin', '*') |
6 | 6 | ->withHeader('Access-Control-Allow-Methods', 'GET, PUT, PATCH, POST, DELETE, OPTIONS') |
7 | 7 | ->withHeader('Access-Control-Allow-Credentials', 'true') |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | $this->post('/token', 'App\Controller\TokenController:auth'); |
13 | 13 | |
14 | - $this->group('/{entity:user}', function () { |
|
14 | + $this->group('/{entity:user}', function() { |
|
15 | 15 | $this->get('', 'App\Controller\UserController:actionIndex'); |
16 | 16 | $this->post('', 'App\Controller\UserController:actionCreate'); |
17 | 17 | $this->get('/{id:[0-9]+}', 'App\Controller\UserController:actionGet'); |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | $this->post('/reset-password', 'App\Controller\UserController:actionResetPassword'); |
23 | 23 | }); |
24 | 24 | |
25 | - $this->group('/{entity:role|right}', function () { |
|
25 | + $this->group('/{entity:role|right}', function() { |
|
26 | 26 | $this->get('', 'App\Controller\CrudController:actionIndex'); |
27 | 27 | $this->get('/{id:[0-9]+}', 'App\Controller\CrudController:actionGet'); |
28 | 28 | $this->post('', 'App\Controller\CrudController:actionCreate'); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $this->delete('/{id:[0-9]+}', 'App\Controller\CrudController:actionDelete'); |
31 | 31 | }); |
32 | 32 | |
33 | - $this->group('/{entity:log}', function () { |
|
33 | + $this->group('/{entity:log}', function() { |
|
34 | 34 | $this->get('', 'App\Controller\CrudController:actionIndex'); |
35 | 35 | $this->get('/{id:[0-9]+}', 'App\Controller\CrudController:actionGet'); |
36 | 36 | }); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | use Illuminate\Database\Capsule\Manager as Capsule; |
3 | 3 | |
4 | -class CreateLogsTable{ |
|
4 | +class CreateLogsTable { |
|
5 | 5 | /** |
6 | 6 | * Do the migration |
7 | 7 | */ |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | use Illuminate\Database\Capsule\Manager as Capsule; |
3 | 3 | |
4 | -class CreateRightsTable{ |
|
4 | +class CreateRightsTable { |
|
5 | 5 | /** |
6 | 6 | * Do the migration |
7 | 7 | */ |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | use Illuminate\Database\Capsule\Manager as Capsule; |
3 | 3 | |
4 | -class CreateUsersTable{ |
|
4 | +class CreateUsersTable { |
|
5 | 5 | /** |
6 | 6 | * Do the migration |
7 | 7 | */ |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | use Illuminate\Database\Capsule\Manager as Capsule; |
3 | 3 | |
4 | -class CreateRolesToRightTable{ |
|
4 | +class CreateRolesToRightTable { |
|
5 | 5 | /** |
6 | 6 | * Do the migration |
7 | 7 | */ |