Asvae\ApiTester\Storages\JsonStorage::createDirectoryIfNotExists PHP 메소드

createDirectoryIfNotExists() 보호된 메소드

Make directory path if not exists
    protected function createDirectoryIfNotExists()
    {
        if (!is_dir($this->getPath())) {
            $this->files->makeDirectory($this->getPath(), 0755, true);
        }
    }