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

write() public method

Caches feature node.
public write ( string $path, Behat\Gherkin\Node\FeatureNode $feature )
$path string Feature path
$feature Behat\Gherkin\Node\FeatureNode Feature instance
    public function write($path, FeatureNode $feature)
    {
        file_put_contents($this->getCachePathFor($path), serialize($feature));
    }