repository = $repository; } /** * Execute the console command. * * @return void */ public function fire() { $this->repository->setSource($this->input->getOption('database')); $this->repository->createRepository(); $this->info("Migration table created successfully."); } /** * Get the console command options. * * @return array */ protected function getOptions() { return array( array('database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'), ); } }