Yiinitializr\Helpers\Config::getEnvironmentLockFilePath PHP Method

getEnvironmentLockFilePath() public static method

Returns the environment lock file path
public static getEnvironmentLockFilePath ( ) : string
return string
    public static function getEnvironmentLockFilePath()
    {
        if (null === self::$_envlock_file_path) {
            self::$_envlock_file_path = self::getConfigurationDirectoryPath() . '/env.lock';
        }
        return self::$_envlock_file_path;
    }