yii\mutex\FileMutex::getLockFilePath PHP Method

getLockFilePath() protected method

Generate path for lock file.
Since: 2.0.10
protected getLockFilePath ( string $name ) : string
$name string
return string
    protected function getLockFilePath($name)
    {
        return $this->mutexPath . DIRECTORY_SEPARATOR . md5($name) . '.lock';
    }