Devise\Support\Console\DevisePublishAssetsCommand::copyPublicAssets PHP Метод

copyPublicAssets() защищенный Метод

Copies the public assets over to the application
protected copyPublicAssets ( ) : void
Результат void
    protected function copyPublicAssets()
    {
        $target = $this->__DIR__ . '/../../../../public';
        $source = $this->public_path . '/packages/devisephp/cms';
        $this->File->copyDirectory($target, $source);
    }