You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UrlGenerator has the following deprecation notices:
PHP Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /src/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php on line 570
PHP Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /src/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php on line 633
Steps To Reproduce
This can be easily replicated with a unit test such as:
Laravel Version
10.48.8
PHP Version
8.2.16
Database Driver & Version
No response
Description
UrlGenerator has the following deprecation notices:
parameter #1
($haystack) of type string is deprecated in /src/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php on line 570parameter #2
($subject) of type string is deprecated in /src/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php on line 633Steps To Reproduce
This can be easily replicated with a unit test such as:
Here,
assertLocation
will pass a null value as$path
and trigger the deprecation notices.The text was updated successfully, but these errors were encountered: