Aws\Credentials\CredentialProvider::getHomeDir PHP Метод

getHomeDir() приватный статический Метод

Gets the environment's HOME directory if available.
private static getHomeDir ( ) : null | string
Результат null | string
    private static function getHomeDir()
    {
        // On Linux/Unix-like systems, use the HOME environment variable
        if ($homeDir = getenv('HOME')) {
            return $homeDir;
        }
        // Get the HOMEDRIVE and HOMEPATH values for Windows hosts
        $homeDrive = getenv('HOMEDRIVE');
        $homePath = getenv('HOMEPATH');
        return $homeDrive && $homePath ? $homeDrive . $homePath : null;
    }