*/ public function providerForTestIsAbsolutePath() { return [ ['/path/to/something', true], ['/path/to/something/file.php', true], ['relative/path/to/something', false], ['relative/path/to/something/file.php', false], ['c:/path/to/something', true], ['file://c:/path/to/something', true], ['zlib://c:/path/to/something', true], ]; } }