@@ -39,6 +39,6 @@ |
||
| 39 | 39 | */ |
| 40 | 40 | public function __invoke(Request $request, Response $response, callable $next = null) |
| 41 | 41 | { |
| 42 | - return new HtmlResponse($this->template->render('admin::index', ['layout' => 'layout/admin'])); |
|
| 42 | + return new HtmlResponse($this->template->render('admin::index', [ 'layout' => 'layout/admin' ])); |
|
| 43 | 43 | } |
| 44 | 44 | } |
@@ -18,13 +18,13 @@ discard block |
||
| 18 | 18 | $allUsers = array_column($articlePosts->getAdapter()->fetchAll('select admin_user_uuid from admin_users'), 'admin_user_uuid'); |
| 19 | 19 | $allCategory = array_column($articlePosts->getAdapter()->fetchAll('select category_uuid from category'), 'category_uuid'); |
| 20 | 20 | |
| 21 | - for($i = 0; $i < $count; $i++) { |
|
| 21 | + for ($i = 0; $i < $count; $i++) { |
|
| 22 | 22 | // Insert Article |
| 23 | 23 | $id = $faker->uuid; |
| 24 | 24 | $mysqlUuid = (new MysqlUuid\Uuid($id))->toFormat(new MysqlUuid\Formats\Binary()); |
| 25 | 25 | $title = $faker->sentence(); |
| 26 | - $userUuid = $allUsers[rand(0, (count($allUsers) - 1))]; |
|
| 27 | - $categoryUuid = $allCategory[rand(0, (count($allCategory) - 1))]; |
|
| 26 | + $userUuid = $allUsers[ rand(0, (count($allUsers) - 1)) ]; |
|
| 27 | + $categoryUuid = $allCategory[ rand(0, (count($allCategory) - 1)) ]; |
|
| 28 | 28 | $data = [ |
| 29 | 29 | 'article_uuid' => $mysqlUuid, |
| 30 | 30 | 'article_id' => $id, |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | 'title' => $title, |
| 47 | 47 | 'body' => $faker->paragraph(15), |
| 48 | 48 | 'lead' => $faker->paragraph(5), |
| 49 | - 'featured_img' => $featuredImages[rand(0, (count($featuredImages) - 1))], |
|
| 50 | - 'main_img' => $mainImages[rand(0, (count($mainImages) - 1))], |
|
| 49 | + 'featured_img' => $featuredImages[ rand(0, (count($featuredImages) - 1)) ], |
|
| 50 | + 'main_img' => $mainImages[ rand(0, (count($mainImages) - 1)) ], |
|
| 51 | 51 | 'has_layout' => true, |
| 52 | 52 | ]; |
| 53 | 53 | |
@@ -6,15 +6,15 @@ |
||
| 6 | 6 | { |
| 7 | 7 | public function up() |
| 8 | 8 | { |
| 9 | - $this->table('article_posts', ['id' => false]) |
|
| 10 | - ->addColumn('article_uuid', 'binary', ['limit' => 16]) |
|
| 9 | + $this->table('article_posts', [ 'id' => false ]) |
|
| 10 | + ->addColumn('article_uuid', 'binary', [ 'limit' => 16 ]) |
|
| 11 | 11 | ->addColumn('title', 'text') |
| 12 | 12 | ->addColumn('body', 'text') |
| 13 | 13 | ->addColumn('lead', 'text') |
| 14 | - ->addColumn('featured_img', 'text', ['null' => true]) |
|
| 15 | - ->addColumn('main_img', 'text', ['null' => true]) |
|
| 16 | - ->addColumn('has_layout', 'boolean', ['default' => true]) |
|
| 17 | - ->addForeignKey('article_uuid', 'articles', 'article_uuid', ['delete' => 'NO_ACTION', 'update' => 'NO_ACTION']) |
|
| 14 | + ->addColumn('featured_img', 'text', [ 'null' => true ]) |
|
| 15 | + ->addColumn('main_img', 'text', [ 'null' => true ]) |
|
| 16 | + ->addColumn('has_layout', 'boolean', [ 'default' => true ]) |
|
| 17 | + ->addForeignKey('article_uuid', 'articles', 'article_uuid', [ 'delete' => 'NO_ACTION', 'update' => 'NO_ACTION' ]) |
|
| 18 | 18 | ->create(); |
| 19 | 19 | } |
| 20 | 20 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Web\Action; |
| 6 | 6 | |
@@ -20,14 +20,14 @@ |
||
| 20 | 20 | /** |
| 21 | 21 | * |
| 22 | 22 | * |
| 23 | - * @var Template |
|
| 23 | + * @var Template |
|
| 24 | 24 | */ |
| 25 | 25 | private $template; |
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * |
| 29 | 29 | * |
| 30 | - * @var PageService $pageService |
|
| 30 | + * @var PageService $pageService |
|
| 31 | 31 | */ |
| 32 | 32 | private $pageService; |
| 33 | 33 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Web\Factory\Action; |
| 6 | 6 | |
@@ -22,6 +22,9 @@ |
||
| 22 | 22 | return $this; |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | + /** |
|
| 26 | + * @return boolean |
|
| 27 | + */ |
|
| 25 | 28 | public function current() |
| 26 | 29 | { |
| 27 | 30 | return $this->session->getStorage()->user; |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | ->getMockForAbstractClass(); |
| 19 | 19 | $session = new \Zend\Session\SessionManager(); |
| 20 | 20 | $container = $this->getMockBuilder(\Interop\Container\ContainerInterface::class) |
| 21 | - ->setMethods(['get']) |
|
| 21 | + ->setMethods([ 'get' ]) |
|
| 22 | 22 | ->getMockForAbstractClass(); |
| 23 | 23 | $container->expects(static::at(0)) |
| 24 | 24 | ->method('get') |
@@ -20,11 +20,11 @@ |
||
| 20 | 20 | ->getMockForAbstractClass(); |
| 21 | 21 | |
| 22 | 22 | $container = $this->getMockBuilder(\Interop\Container\ContainerInterface::class) |
| 23 | - ->setMethods(['get']) |
|
| 23 | + ->setMethods([ 'get' ]) |
|
| 24 | 24 | ->getMockForAbstractClass(); |
| 25 | 25 | $container->expects(static::at(0)) |
| 26 | 26 | ->method('get') |
| 27 | - ->will(static::returnValue(['upload' => ['public_path' => 'test', 'non_public_path' => 'test']])); |
|
| 27 | + ->will(static::returnValue([ 'upload' => [ 'public_path' => 'test', 'non_public_path' => 'test' ] ])); |
|
| 28 | 28 | $container->expects(static::at(1)) |
| 29 | 29 | ->method('get') |
| 30 | 30 | ->will(static::returnValue($articleMapper)); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | ->getMockForAbstractClass(); |
| 21 | 21 | |
| 22 | 22 | $container = $this->getMockBuilder(\Interop\Container\ContainerInterface::class) |
| 23 | - ->setMethods(['get']) |
|
| 23 | + ->setMethods([ 'get' ]) |
|
| 24 | 24 | ->getMockForAbstractClass(); |
| 25 | 25 | $container->expects(static::at(0)) |
| 26 | 26 | ->method('get') |