mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 18:36:58 +01:00
f66d57f19d
* add native return types * remove redundant phpdoc
15 lines
235 B
PHP
15 lines
235 B
PHP
<?php
|
|
namespace Psalm;
|
|
|
|
use Webmozart\PathUtil\Path;
|
|
|
|
/**
|
|
* @param string $path
|
|
*
|
|
* @deprecated Use {@see Webmozart\PathUtil\Path::isAbsolute} instead
|
|
*/
|
|
function isAbsolutePath($path): bool
|
|
{
|
|
return Path::isAbsolute($path);
|
|
}
|