1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/src/functions.php

16 lines
245 B
PHP

<?php
namespace Psalm;
use Webmozart\PathUtil\Path;
/**
* @param string $path
* @return bool
*
* @deprecated Use {@see Webmozart\PathUtil\Path::isAbsolute} instead
*/
function isAbsolutePath($path)
{
return Path::isAbsolute($path);
}