for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the "andrey-helldar/support" project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* @author Andrey Helldar <[email protected]>
* @copyright 2021 Andrey Helldar
* @license MIT
* @see https://github.com/andrey-helldar/support
*/
namespace Helldar\Support\Facades\Http;
use Helldar\Support\Facades\Facade;
use Helldar\Support\Helpers\Http\Url as Helper;
/**
* @method static \Helldar\Support\Helpers\Http\Builder parse(\Helldar\Contracts\Http\Builder|string|null $url)
* @method static bool exists(\Helldar\Contracts\Http\Builder|string|null $url)
* @method static bool is(\Helldar\Contracts\Http\Builder|string|null $url)
* @method static \Helldar\Support\Helpers\Http\Builder|\Helldar\Contracts\Http\Builder|string validated(\Helldar\Contracts\Http\Builder|string|null $url)
* @method static string|null default(\Helldar\Contracts\Http\Builder|string|null $url, \Helldar\Contracts\Http\Builder|string|null $default)
* @method static void validate(\Helldar\Contracts\Http\Builder|string|null $url)
class Url extends Facade
{
protected static function getFacadeAccessor()
return Helper::class;
}