App.php
2 years ago
Artisan.php
2 years ago
Auth.php
2 years ago
Blade.php
2 years ago
Broadcast.php
2 years ago
Bus.php
2 years ago
Cache.php
2 years ago
Config.php
2 years ago
Cookie.php
2 years ago
Crypt.php
2 years ago
DB.php
2 years ago
Date.php
2 years ago
Event.php
2 years ago
Facade.php
2 years ago
File.php
2 years ago
Gate.php
2 years ago
Hash.php
2 years ago
Http.php
2 years ago
Lang.php
2 years ago
Log.php
2 years ago
Mail.php
2 years ago
Notification.php
2 years ago
ParallelTesting.php
2 years ago
Password.php
2 years ago
Queue.php
2 years ago
RateLimiter.php
2 years ago
Redirect.php
2 years ago
Redis.php
2 years ago
Request.php
2 years ago
Response.php
2 years ago
Route.php
2 years ago
Schema.php
2 years ago
Session.php
2 years ago
Storage.php
2 years ago
URL.php
2 years ago
Validator.php
2 years ago
View.php
2 years ago
URL.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\Illuminate\Support\Facades; |
| 4 | |
| 5 | /** |
| 6 | * @method static \Illuminate\Contracts\Routing\UrlGenerator setRootControllerNamespace(string $rootNamespace) |
| 7 | * @method static bool hasValidSignature(\Illuminate\Http\Request $request, bool $absolute = true) |
| 8 | * @method static string action(string|array $action, $parameters = [], bool $absolute = true) |
| 9 | * @method static string asset(string $path, bool $secure = null) |
| 10 | * @method static string secureAsset(string $path) |
| 11 | * @method static string current() |
| 12 | * @method static string full() |
| 13 | * @method static void macro(string $name, object|callable $macro) |
| 14 | * @method static void mixin(object $mixin, bool $replace = true) |
| 15 | * @method static string previous($fallback = false) |
| 16 | * @method static string route(string $name, $parameters = [], bool $absolute = true) |
| 17 | * @method static string secure(string $path, array $parameters = []) |
| 18 | * @method static string signedRoute(string $name, array $parameters = [], \DateTimeInterface|\DateInterval|int $expiration = null, bool $absolute = true) |
| 19 | * @method static string temporarySignedRoute(string $name, \DateTimeInterface|\DateInterval|int $expiration, array $parameters = [], bool $absolute = true) |
| 20 | * @method static string to(string $path, $extra = [], bool $secure = null) |
| 21 | * @method static void defaults(array $defaults) |
| 22 | * @method static void forceScheme(string $scheme) |
| 23 | * @method static bool isValidUrl(string $path) |
| 24 | * |
| 25 | * @see \Illuminate\Routing\UrlGenerator |
| 26 | * @internal |
| 27 | */ |
| 28 | class URL extends Facade |
| 29 | { |
| 30 | /** |
| 31 | * Get the registered name of the component. |
| 32 | * |
| 33 | * @return string |
| 34 | */ |
| 35 | protected static function getFacadeAccessor() |
| 36 | { |
| 37 | return 'url'; |
| 38 | } |
| 39 | } |
| 40 |