LazyRecord\Command\InitCommand::mkpath PHP Метод

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

public mkpath ( $path )
    public function mkpath($path)
    {
        if (!file_exists($path)) {
            $this->logger->info($path);
            mkdir($path, 0755, true);
        }
    }