Efficiently\Larasset\Commands\SetupAssetsCommand::fire PHP Метод

fire() публичный Метод

Execute the console command.
public fire ( ) : void
Результат void
    public function fire()
    {
        $structure = __DIR__ . '/../../../../structure';
        $base = base_path();
        $this->line('');
        $this->line('Creating initial directory structure and copying some general purpose assets over.');
        $this->line('');
        $this->xcopy(realpath($structure), realpath($base));
        $this->line('');
        $this->line('Finished.');
    }
SetupAssetsCommand