@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | return [ |
| 12 | 12 | 'templates' => [ |
| 13 | 13 | 'paths' => [ |
| 14 | - 'article' => [__DIR__ . '/../templates/article'], |
|
| 14 | + 'article' => [ __DIR__ . '/../templates/article' ], |
|
| 15 | 15 | ], |
| 16 | 16 | ], |
| 17 | 17 | |
@@ -51,49 +51,49 @@ discard block |
||
| 51 | 51 | 'name' => 'admin.posts', |
| 52 | 52 | 'path' => '/admin/posts', |
| 53 | 53 | 'middleware' => Controller\PostController::class, |
| 54 | - 'allowed_methods' => ['GET'], |
|
| 54 | + 'allowed_methods' => [ 'GET' ], |
|
| 55 | 55 | ], |
| 56 | 56 | [ |
| 57 | 57 | 'name' => 'admin.posts.action', |
| 58 | 58 | 'path' => '/admin/posts/:action/:id', |
| 59 | 59 | 'middleware' => Controller\PostController::class, |
| 60 | - 'allowed_methods' => ['GET', 'POST'], |
|
| 60 | + 'allowed_methods' => [ 'GET', 'POST' ], |
|
| 61 | 61 | ], |
| 62 | 62 | [ |
| 63 | 63 | 'name' => 'admin.discussions', |
| 64 | 64 | 'path' => '/admin/discussions', |
| 65 | 65 | 'middleware' => Controller\DiscussionController::class, |
| 66 | - 'allowed_methods' => ['GET', 'POST'] |
|
| 66 | + 'allowed_methods' => [ 'GET', 'POST' ] |
|
| 67 | 67 | ], |
| 68 | 68 | [ |
| 69 | 69 | 'name' => 'admin.discussions.action', |
| 70 | 70 | 'path' => '/admin/discussions/:action/:id', |
| 71 | 71 | 'middleware' => Controller\DiscussionController::class, |
| 72 | - 'allowed_methods' => ['GET', 'POST'] |
|
| 72 | + 'allowed_methods' => [ 'GET', 'POST' ] |
|
| 73 | 73 | ], |
| 74 | 74 | [ |
| 75 | 75 | 'name' => 'admin.events', |
| 76 | 76 | 'path' => '/admin/events', |
| 77 | 77 | 'middleware' => Controller\EventController::class, |
| 78 | - 'allowed_methods' => ['GET', 'POST'] |
|
| 78 | + 'allowed_methods' => [ 'GET', 'POST' ] |
|
| 79 | 79 | ], |
| 80 | 80 | [ |
| 81 | 81 | 'name' => 'admin.events.action', |
| 82 | 82 | 'path' => '/admin/events/:action/:id', |
| 83 | 83 | 'middleware' => Controller\EventController::class, |
| 84 | - 'allowed_methods' => ['GET', 'POST'] |
|
| 84 | + 'allowed_methods' => [ 'GET', 'POST' ] |
|
| 85 | 85 | ], |
| 86 | 86 | [ |
| 87 | 87 | 'name' => 'admin.videos', |
| 88 | 88 | 'path' => '/admin/videos', |
| 89 | 89 | 'middleware' => Controller\VideoController::class, |
| 90 | - 'allowed_methods' => ['GET', 'POST'] |
|
| 90 | + 'allowed_methods' => [ 'GET', 'POST' ] |
|
| 91 | 91 | ], |
| 92 | 92 | [ |
| 93 | 93 | 'name' => 'admin.videos.action', |
| 94 | 94 | 'path' => '/admin/videos/:action/:id', |
| 95 | 95 | 'middleware' => Controller\VideoController::class, |
| 96 | - 'allowed_methods' => ['GET', 'POST'] |
|
| 96 | + 'allowed_methods' => [ 'GET', 'POST' ] |
|
| 97 | 97 | ] |
| 98 | 98 | ], |
| 99 | 99 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Article\Factory\Service; |
| 5 | 5 | |
@@ -21,8 +21,8 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function __invoke(ContainerInterface $container): VideoService |
| 23 | 23 | { |
| 24 | - $config = $container->get('config')['upload']; |
|
| 25 | - $upload = new Upload($config['public_path'], $config['non_public_path']); |
|
| 24 | + $config = $container->get('config')[ 'upload' ]; |
|
| 25 | + $upload = new Upload($config[ 'public_path' ], $config[ 'non_public_path' ]); |
|
| 26 | 26 | |
| 27 | 27 | return new VideoService( |
| 28 | 28 | $container->get(ArticleMapper::class), |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Article\Factory\Service; |
| 5 | 5 | |
@@ -20,8 +20,8 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | public function __invoke(ContainerInterface $container): PostService |
| 22 | 22 | { |
| 23 | - $config = $container->get('config')['upload']; |
|
| 24 | - $upload = new Upload($config['public_path'], $config['non_public_path']); |
|
| 23 | + $config = $container->get('config')[ 'upload' ]; |
|
| 24 | + $upload = new Upload($config[ 'public_path' ], $config[ 'non_public_path' ]); |
|
| 25 | 25 | |
| 26 | 26 | return new PostService( |
| 27 | 27 | $container->get(ArticleMapper::class), |
@@ -19,8 +19,8 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function __invoke(ContainerInterface $container) |
| 21 | 21 | { |
| 22 | - $config = $container->get('config')['upload']; |
|
| 23 | - $upload = new Upload($config['public_path'], $config['non_public_path']); |
|
| 22 | + $config = $container->get('config')[ 'upload' ]; |
|
| 23 | + $upload = new Upload($config[ 'public_path' ], $config[ 'non_public_path' ]); |
|
| 24 | 24 | |
| 25 | 25 | return new EventService( |
| 26 | 26 | $container->get(ArticleMapper::class), |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Article\Factory\Controller; |
| 5 | 5 | |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | 'middleware_pipeline' => [ |
| 51 | 51 | // execute this middlweare on every /admin[*] path |
| 52 | 52 | 'permission' => [ |
| 53 | - 'middleware' => [Middleware\AdminAuth::class], |
|
| 53 | + 'middleware' => [ Middleware\AdminAuth::class ], |
|
| 54 | 54 | 'priority' => 100, |
| 55 | 55 | 'path' => '/admin' |
| 56 | 56 | ], |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Core\Factory\Service; |
| 5 | 5 | |
@@ -20,8 +20,8 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | public function __invoke(ContainerInterface $container): AdminUserService |
| 22 | 22 | { |
| 23 | - $config = $container->get('config')['upload']; |
|
| 24 | - $upload = new Upload($config['public_path'], $config['non_public_path']); |
|
| 23 | + $config = $container->get('config')[ 'upload' ]; |
|
| 24 | + $upload = new Upload($config[ 'public_path' ], $config[ 'non_public_path' ]); |
|
| 25 | 25 | |
| 26 | 26 | return new AdminUserService( |
| 27 | 27 | new Bcrypt(), |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Core\Factory\Service; |
| 5 | 5 | |
@@ -16,8 +16,8 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | public function __invoke(ContainerInterface $container): MeetupApiService |
| 18 | 18 | { |
| 19 | - $config = $container->get('config')['meetupApi']; |
|
| 19 | + $config = $container->get('config')[ 'meetupApi' ]; |
|
| 20 | 20 | |
| 21 | - return new MeetupApiService($config['key']); |
|
| 21 | + return new MeetupApiService($config[ 'key' ]); |
|
| 22 | 22 | } |
| 23 | 23 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | if (!$user) { |
| 55 | 55 | return $response->withStatus(302)->withHeader( |
| 56 | 56 | 'Location', |
| 57 | - $this->router->generateUri('auth', ['action' => 'login']) |
|
| 57 | + $this->router->generateUri('auth', [ 'action' => 'login' ]) |
|
| 58 | 58 | ); |
| 59 | 59 | } |
| 60 | 60 | |