We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 090e406 + 17163b4 commit b683ec7Copy full SHA for b683ec7
src/Illuminate/Foundation/Providers/FoundationServiceProvider.php
@@ -49,8 +49,8 @@ public function registerRequestValidation()
49
*/
50
public function registerRequestSignatureValidation()
51
{
52
- Request::macro('hasValidSignature', function () {
53
- return URL::hasValidSignature($this);
+ Request::macro('hasValidSignature', function ($absolute = true) {
+ return URL::hasValidSignature($this, $absolute);
54
});
55
}
56
0 commit comments