for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\Support\Facades\Helpers;
use Helldar\Support\Concerns\Deprecation;
use Helldar\Support\Facades\Facade;
use Helldar\Support\Helpers\Http as Helper;
/**
* @method static bool exists(?string $url)
* @method static bool isUrl(?string $url)
* @method static string domain(?string $url)
* @method static string host(?string $url)
* @method static string scheme(?string $url)
* @method static string validatedUrl(?string $url)
* @method static string|null image(string $url, string $default = null)
* @method static string|null subdomain(?string $url)
* @method static void validateUrl(?string $url)
*
* @deprecated since 4.0: Namespace will be renamed to `Helldar\Support\Facades\Helpers\Http\Uri`.
*/
final class Http extends Facade
{
use Deprecation;
public static function __callStatic($method, $args)
self::deprecatedClass('Helldar\Support\Facades\Helpers\Http\Uri');
return parent::__callStatic($method, $args);
}
protected static function getFacadeAccessor()
return Helper::class;