Asvae\ApiTester\Storages\JsonStorage::createDirectoryIfNotExists PHP Method

createDirectoryIfNotExists() protected method

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