@@ -56,8 +56,7 @@ |
||
| 56 | 56 | * class MigrationEntity |
| 57 | 57 | * @package Platine\Framework\Migration |
| 58 | 58 | */ |
| 59 | -class MigrationEntity extends Entity |
|
| 60 | -{ |
|
| 59 | +class MigrationEntity extends Entity { |
|
| 61 | 60 | |
| 62 | 61 | /** |
| 63 | 62 | * {@inheritdoc} |
@@ -54,15 +54,13 @@ |
||
| 54 | 54 | * class MigrationRepository |
| 55 | 55 | * @package Platine\Framework\Migration |
| 56 | 56 | */ |
| 57 | -class MigrationRepository extends Repository |
|
| 58 | -{ |
|
| 57 | +class MigrationRepository extends Repository { |
|
| 59 | 58 | |
| 60 | 59 | /** |
| 61 | 60 | * Create new instance |
| 62 | 61 | * @param EntityManager $manager |
| 63 | 62 | */ |
| 64 | - public function __construct(EntityManager $manager) |
|
| 65 | - { |
|
| 63 | + public function __construct(EntityManager $manager) { |
|
| 66 | 64 | parent::__construct($manager, MigrationEntity::class); |
| 67 | 65 | } |
| 68 | 66 | } |
@@ -18,16 +18,14 @@ discard block |
||
| 18 | 18 | * |
| 19 | 19 | * @author tony |
| 20 | 20 | */ |
| 21 | -class ConfigCommand extends Command |
|
| 22 | -{ |
|
| 21 | +class ConfigCommand extends Command { |
|
| 23 | 22 | |
| 24 | 23 | protected Application $application; |
| 25 | 24 | |
| 26 | 25 | /** |
| 27 | 26 | * |
| 28 | 27 | */ |
| 29 | - public function __construct(Application $application) |
|
| 30 | - { |
|
| 28 | + public function __construct(Application $application) { |
|
| 31 | 29 | parent::__construct('config', 'Command to manage configuration'); |
| 32 | 30 | |
| 33 | 31 | $this->addOption('-l|--list', 'List the configuration', '', false); |
@@ -36,8 +34,7 @@ discard block |
||
| 36 | 34 | $this->application = $application; |
| 37 | 35 | } |
| 38 | 36 | |
| 39 | - public function execute() |
|
| 40 | - { |
|
| 37 | + public function execute() { |
|
| 41 | 38 | if ($this->getOptionValue('list')) { |
| 42 | 39 | $this->showConfigList(); |
| 43 | 40 | } |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | ) { |
| 74 | 74 | parent::__construct($app, $repository, $schema, $config, $filesystem); |
| 75 | 75 | $this->setName('migration:reset') |
| 76 | - ->setDescription('Rollback all migration done before'); |
|
| 76 | + ->setDescription('Rollback all migration done before'); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
@@ -57,8 +57,7 @@ discard block |
||
| 57 | 57 | * class MigrationResetCommand |
| 58 | 58 | * @package Platine\Framework\Migration\Command |
| 59 | 59 | */ |
| 60 | -class MigrationResetCommand extends AbstractCommand |
|
| 61 | -{ |
|
| 60 | +class MigrationResetCommand extends AbstractCommand { |
|
| 62 | 61 | |
| 63 | 62 | /** |
| 64 | 63 | * Create new instance |
@@ -79,8 +78,7 @@ discard block |
||
| 79 | 78 | /** |
| 80 | 79 | * {@inheritodc} |
| 81 | 80 | */ |
| 82 | - public function execute() |
|
| 83 | - { |
|
| 81 | + public function execute() { |
|
| 84 | 82 | $io = $this->io(); |
| 85 | 83 | $writer = $io->writer(); |
| 86 | 84 | $writer->boldYellow('ALL MIGRATION ROLLBACK', true)->eol(); |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | ) { |
| 75 | 75 | parent::__construct($app, $repository, $schema, $config, $filesystem); |
| 76 | 76 | $this->setName('migration:exec') |
| 77 | - ->setDescription('Execute the migration up/down for one version'); |
|
| 77 | + ->setDescription('Execute the migration up/down for one version'); |
|
| 78 | 78 | |
| 79 | 79 | $this->addArgument('type', 'type of migration [up|down]', 'up', true, true, false, function ($val) { |
| 80 | 80 | if (!in_array($val, ['up', 'down'])) { |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | )); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - return $val; |
|
| 87 | + return $val; |
|
| 88 | 88 | }); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $this->setName('migration:exec') |
| 77 | 77 | ->setDescription('Execute the migration up/down for one version'); |
| 78 | 78 | |
| 79 | - $this->addArgument('type', 'type of migration [up|down]', 'up', true, true, false, function ($val) { |
|
| 79 | + $this->addArgument('type', 'type of migration [up|down]', 'up', true, true, false, function($val) { |
|
| 80 | 80 | if (!in_array($val, ['up', 'down'])) { |
| 81 | 81 | throw new RuntimeException(sprintf( |
| 82 | 82 | 'Invalid argument type [%s], must be one of [up, down]', |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | } else { |
| 119 | 119 | $data = []; |
| 120 | 120 | foreach ($executed as $version => $entity) { |
| 121 | - $data[(string)$version] = $entity->description; |
|
| 121 | + $data[(string) $version] = $entity->description; |
|
| 122 | 122 | } |
| 123 | 123 | $version = $io->choice('Choose which version to rollback', $data); |
| 124 | 124 | $description = str_replace('_', ' ', $data[$version]); |
@@ -58,8 +58,7 @@ discard block |
||
| 58 | 58 | * class MigrationExecuteCommand |
| 59 | 59 | * @package Platine\Framework\Migration\Command |
| 60 | 60 | */ |
| 61 | -class MigrationExecuteCommand extends AbstractCommand |
|
| 62 | -{ |
|
| 61 | +class MigrationExecuteCommand extends AbstractCommand { |
|
| 63 | 62 | |
| 64 | 63 | /** |
| 65 | 64 | * Create new instance |
@@ -91,8 +90,7 @@ discard block |
||
| 91 | 90 | /** |
| 92 | 91 | * {@inheritodc} |
| 93 | 92 | */ |
| 94 | - public function execute() |
|
| 95 | - { |
|
| 93 | + public function execute() { |
|
| 96 | 94 | $type = $this->getArgumentValue('type'); |
| 97 | 95 | |
| 98 | 96 | $io = $this->io(); |
@@ -9,26 +9,26 @@ |
||
| 9 | 9 | |
| 10 | 10 | public function up(): void |
| 11 | 11 | { |
| 12 | - //Action when migrate up |
|
| 13 | - $this->create('roles', function (CreateTable $table) { |
|
| 14 | - $table->integer('id') |
|
| 15 | - ->autoincrement() |
|
| 16 | - ->primary(); |
|
| 17 | - $table->string('description') |
|
| 18 | - ->description('The role description'); |
|
| 19 | - $table->datetime('created_at') |
|
| 20 | - ->description('role created at') |
|
| 21 | - ->notNull(); |
|
| 22 | - $table->datetime('updated_at') |
|
| 23 | - ->description('role updated at'); |
|
| 12 | + //Action when migrate up |
|
| 13 | + $this->create('roles', function (CreateTable $table) { |
|
| 14 | + $table->integer('id') |
|
| 15 | + ->autoincrement() |
|
| 16 | + ->primary(); |
|
| 17 | + $table->string('description') |
|
| 18 | + ->description('The role description'); |
|
| 19 | + $table->datetime('created_at') |
|
| 20 | + ->description('role created at') |
|
| 21 | + ->notNull(); |
|
| 22 | + $table->datetime('updated_at') |
|
| 23 | + ->description('role updated at'); |
|
| 24 | 24 | |
| 25 | - $table->engine('INNODB'); |
|
| 26 | - }); |
|
| 25 | + $table->engine('INNODB'); |
|
| 26 | + }); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | public function down(): void |
| 30 | 30 | { |
| 31 | - //Action when migrate down |
|
| 32 | - $this->drop('roles'); |
|
| 31 | + //Action when migrate down |
|
| 32 | + $this->drop('roles'); |
|
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | \ No newline at end of file |
@@ -10,7 +10,7 @@ |
||
| 10 | 10 | public function up(): void |
| 11 | 11 | { |
| 12 | 12 | //Action when migrate up |
| 13 | - $this->create('roles', function (CreateTable $table) { |
|
| 13 | + $this->create('roles', function(CreateTable $table) { |
|
| 14 | 14 | $table->integer('id') |
| 15 | 15 | ->autoincrement() |
| 16 | 16 | ->primary(); |
@@ -4,8 +4,7 @@ |
||
| 4 | 4 | use Platine\Database\Schema\CreateTable; |
| 5 | 5 | use Platine\Framework\Migration\AbstractMigration; |
| 6 | 6 | |
| 7 | -class AddRolesTable20210705065247 extends AbstractMigration |
|
| 8 | -{ |
|
| 7 | +class AddRolesTable20210705065247 extends AbstractMigration { |
|
| 9 | 8 | |
| 10 | 9 | public function up(): void |
| 11 | 10 | { |
@@ -9,18 +9,18 @@ |
||
| 9 | 9 | |
| 10 | 10 | public function up(): void |
| 11 | 11 | { |
| 12 | - //Action when migrate up |
|
| 13 | - $this->alter('roles', function (AlterTable $table) { |
|
| 14 | - $table->string('code')->notNull(); |
|
| 15 | - $table->unique('code'); |
|
| 16 | - }); |
|
| 12 | + //Action when migrate up |
|
| 13 | + $this->alter('roles', function (AlterTable $table) { |
|
| 14 | + $table->string('code')->notNull(); |
|
| 15 | + $table->unique('code'); |
|
| 16 | + }); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | public function down(): void |
| 20 | 20 | { |
| 21 | - //Action when migrate down |
|
| 22 | - $this->alter('roles', function (AlterTable $table) { |
|
| 23 | - $table->dropColumn('code'); |
|
| 24 | - }); |
|
| 21 | + //Action when migrate down |
|
| 22 | + $this->alter('roles', function (AlterTable $table) { |
|
| 23 | + $table->dropColumn('code'); |
|
| 24 | + }); |
|
| 25 | 25 | } |
| 26 | 26 | } |
| 27 | 27 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | public function up(): void |
| 11 | 11 | { |
| 12 | 12 | //Action when migrate up |
| 13 | - $this->alter('roles', function (AlterTable $table) { |
|
| 13 | + $this->alter('roles', function(AlterTable $table) { |
|
| 14 | 14 | $table->string('code')->notNull(); |
| 15 | 15 | $table->unique('code'); |
| 16 | 16 | }); |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | public function down(): void |
| 20 | 20 | { |
| 21 | 21 | //Action when migrate down |
| 22 | - $this->alter('roles', function (AlterTable $table) { |
|
| 22 | + $this->alter('roles', function(AlterTable $table) { |
|
| 23 | 23 | $table->dropColumn('code'); |
| 24 | 24 | }); |
| 25 | 25 | } |
@@ -4,8 +4,7 @@ |
||
| 4 | 4 | use Platine\Database\Schema\AlterTable; |
| 5 | 5 | use Platine\Framework\Migration\AbstractMigration; |
| 6 | 6 | |
| 7 | -class AddRolesCodeField20210705065339 extends AbstractMigration |
|
| 8 | -{ |
|
| 7 | +class AddRolesCodeField20210705065339 extends AbstractMigration { |
|
| 9 | 8 | |
| 10 | 9 | public function up(): void |
| 11 | 10 | { |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | */ |
| 66 | 66 | public function register(): void |
| 67 | 67 | { |
| 68 | - $this->app->share(DbConfig::class, function (ContainerInterface $app) { |
|
| 68 | + $this->app->share(DbConfig::class, function(ContainerInterface $app) { |
|
| 69 | 69 | $env = $app->get(Config::class)->get('app.env', ''); |
| 70 | 70 | return new DbConfig($app->get(QueryBuilder::class), $env); |
| 71 | 71 | }); |
@@ -57,8 +57,7 @@ |
||
| 57 | 57 | * class DatabaseConfigServiceProvider |
| 58 | 58 | * @package Platine\Framework\Service\Provider |
| 59 | 59 | */ |
| 60 | -class DatabaseConfigServiceProvider extends ServiceProvider |
|
| 61 | -{ |
|
| 60 | +class DatabaseConfigServiceProvider extends ServiceProvider { |
|
| 62 | 61 | |
| 63 | 62 | /** |
| 64 | 63 | * {@inheritdoc} |
@@ -15,8 +15,7 @@ |
||
| 15 | 15 | * |
| 16 | 16 | * @author tony |
| 17 | 17 | */ |
| 18 | -class ListAction implements RequestHandlerInterface |
|
| 19 | -{ |
|
| 18 | +class ListAction implements RequestHandlerInterface { |
|
| 20 | 19 | protected UserRepository $userRepository; |
| 21 | 20 | protected Template $template; |
| 22 | 21 | protected DbConfig $dbConfig; |