芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/hamcrest/PublishMigrationCommand.php
argument('module')) { $module = $this->laravel['modules']->findOrFail($name); $this->publish($module); return 0; } foreach ($this->laravel['modules']->allEnabled() as $module) { $this->publish($module); } return 0; } /** * Publish migration for the specified module. * * @param \Nwidart\Modules\Module $module */ public function publish($module) { with(new MigrationPublisher(new Migrator($module, $this->getLaravel()))) ->setRepository($this->laravel['modules']) ->setConsole($this) ->publish(); } /** * Get the console command arguments. * * @return array */ protected function getArguments() { return [ ['module', InputArgument::OPTIONAL, 'The name of module being used.'], ]; } }