Bolt\Filesystem\Plugin\HasUrl::handle PHP Метод

handle() публичный Метод

Determine if the path has a url.
public handle ( string $path ) : boolean
$path string
Результат boolean
    public function handle($path)
    {
        try {
            $this->filesystem->url($path);
        } catch (\Exception $e) {
            return false;
        }
        return true;
    }