Flugg\Responder\Console\MakeTransformer::makeDirectory PHP Метод

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

Build a transformers directory if one doesn't exist.
protected makeDirectory ( string $path ) : void
$path string
Результат void
    protected function makeDirectory(string $path)
    {
        if (!$this->files->isDirectory(dirname($path))) {
            $this->files->makeDirectory(dirname($path), 0777, true, true);
        }
    }