Platform::getCwd()
private static function getCwd() : string { $cwd = getcwd(); if ($cwd === false) { $cwd = realpath(''); } if ($cwd === false) { throw new RuntimeException('Could not determine the current working directory'); } return $cwd; }