Behat\Behat\Tester\Cli\RerunController::getFileName PHP 메소드

getFileName() 개인적인 메소드

Returns cache filename (if exists).
private getFileName ( ) : null | string
리턴 null | string
    private function getFileName()
    {
        if (null === $this->cachePath || null === $this->key) {
            return null;
        }
        if (!is_dir($this->cachePath)) {
            mkdir($this->cachePath, 0777);
        }
        return $this->cachePath . DIRECTORY_SEPARATOR . $this->key . '.rerun';
    }