Baum\Console\InstallCommand::fire PHP Method

fire() public method

Basically, we'll write the migration and model stubs out to disk inflected with the name provided. Once its done, we'll dump-autoload for the entire framework to make sure that the new classes are registered by the class loaders.
public fire ( ) : void
return void
    public function fire()
    {
        $name = $this->input->getArgument('name');
        $this->writeMigration($name);
        $this->writeModel($name);
    }