Opis\Closure\ReflectionClosure::getHashedFileName PHP 메소드

getHashedFileName() 보호된 메소드

protected getHashedFileName ( ) : string
리턴 string
    protected function getHashedFileName()
    {
        if ($this->hashedName === null) {
            $this->hashedName = md5($this->getFileName());
        }
        return $this->hashedName;
    }