Behat\Gherkin\Cache\FileCache::getCachePathFor PHP Method

getCachePathFor() protected method

Returns feature cache file path from features path.
protected getCachePathFor ( string $path ) : string
$path string Feature path
return string
    protected function getCachePathFor($path)
    {
        return $this->path . '/' . md5($path) . '.feature.cache';
    }