2019-06-01 14:26:22 +02:00
|
|
|
<?php
|
2019-06-02 17:23:25 +02:00
|
|
|
namespace Psalm;
|
|
|
|
|
2019-07-08 03:20:12 +02:00
|
|
|
use Webmozart\PathUtil\Path;
|
2019-06-02 17:23:25 +02:00
|
|
|
|
2019-06-01 14:26:22 +02:00
|
|
|
/**
|
|
|
|
* @param string $path
|
2019-07-08 03:20:12 +02:00
|
|
|
*
|
2021-06-01 04:23:54 +02:00
|
|
|
* @deprecated Use {@see Webmozart\PathUtil\Path::isAbsolute}. No longer used by Psalm, going to be removed in Psalm 5
|
2019-06-01 14:26:22 +02:00
|
|
|
*/
|
2020-09-04 22:26:33 +02:00
|
|
|
function isAbsolutePath($path): bool
|
2019-06-01 14:26:22 +02:00
|
|
|
{
|
2019-07-08 03:20:12 +02:00
|
|
|
return Path::isAbsolute($path);
|
2019-06-01 14:26:22 +02:00
|
|
|
}
|