EloquentFilter\Commands\MakeEloquentFilter::makeDirectory PHP Метод

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

Build the directory for the class if necessary.
protected makeDirectory ( string $path ) : string
$path string
Результат string
    protected function makeDirectory($path)
    {
        if (!$this->files->isDirectory(dirname($path))) {
            $this->files->makeDirectory(dirname($path), 0777, true, true);
        }
    }