Socieboy\Forum\Commands\MigrateForumCommand::fire PHP Method

fire() public method

Execute the console command.
public fire ( ) : mixed
return mixed
    public function fire()
    {
        $this->createMigration('conversations');
        $this->createMigration('replies');
        sleep(1);
        $this->createMigration('likes');
        $this->info('Migrations created successfully!');
        $this->laravel['composer']->dumpAutoloads();
    }