Viewing file: PublishMigrationCommand.php (1.53 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Akaunting\Module\Commands;
use Illuminate\Console\Command; use Akaunting\Module\Migrations\Migrator; use Akaunting\Module\Publishing\MigrationPublisher; use Symfony\Component\Console\Input\InputArgument;
class PublishMigrationCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'module:publish-migration';
/** * The console command description. * * @var string */ protected $description = "Publish a module's migrations to the application";
/** * Execute the console command. */ public function handle() { if ($alias = $this->argument('alias')) { $module = $this->laravel['module']->findOrFail($alias);
$this->publish($module);
return; }
foreach ($this->laravel['module']->allEnabled() as $module) { $this->publish($module); } }
/** * Publish migration for the specified module. * * @param \Akaunting\Module\Module $module */ public function publish($module) { with(new MigrationPublisher(new Migrator($module, $this->getLaravel()))) ->setRepository($this->laravel['module']) ->setConsole($this) ->publish(); }
/** * Get the console command arguments. * * @return array */ protected function getArguments() { return [ ['alias', InputArgument::OPTIONAL, 'The alias of module being used.'], ]; } }
|