Skip to content

Commit 23c9677

Browse files
fixed method hints
1 parent 55853a2 commit 23c9677

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Support/Facades/URL.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace Radiate\Support\Facades;
44

55
/**
6-
* @method string static current() Get the current URL without query parameters.
7-
* @method string static full() Get the current URL including query parameters.
6+
* @method static string current() Get the current URL without query parameters.
7+
* @method static string full() Get the current URL including query parameters.
88
* @method static string previous(string|null $fallback = null) Get the URL for the previous request.
99
* @method static string register(string $redirect = '') Return the registration URL
1010
* @method static string login(string $redirect = '/') Return the login URL
@@ -22,7 +22,7 @@
2222
* @method static string formatParameters(array $parameters = []) Return a formatted query string
2323
* @method static string asset(string $path) Generate the URL to an application asset.
2424
* @method static bool hasValidSignature(\Radiate\Http\Request $request) Determine if the request URL has a valid signature
25-
* @method static hasCorrectSignature(\Radiate\Http\Request $request) Determine if the request URL has a correct signature
25+
* @method static bool hasCorrectSignature(\Radiate\Http\Request $request) Determine if the request URL has a correct signature
2626
* @method static bool signatureHasNotExpired(\Radiate\Http\Request $request) Determine if the request URL is expired
2727
* @method static string signedUrl(string $path, array $parameters = [], int|null $expiration = null) Create a signed URL
2828
* @method static string temporarySignedUrl(string $path, int $expiration, array $parameters = []) Get a temporary signed URL

0 commit comments

Comments
 (0)