Devise\Support\Console\DevisePublishAssetsCommand::copyPublicAssets PHP Method

copyPublicAssets() protected method

Copies the public assets over to the application
protected copyPublicAssets ( ) : void
return void
    protected function copyPublicAssets()
    {
        $target = $this->__DIR__ . '/../../../../public';
        $source = $this->public_path . '/packages/devisephp/cms';
        $this->File->copyDirectory($target, $source);
    }