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
After the composer update, laravel/framework" was updated to 12.40.2 and is now throwing a deprecation warning Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. in /home/theproject/public_html/vendor/symfony/deprecation-contracts/function.php on line 25
Steps To Reproduce
To reproduce:
Perform a composer update and check that it updates to laravel/framework 12.40.2
If not done yet, do a composer dump-autoload
Check the logs
Go to a specific page where you have the code like Request::get()->('something') or $request::get()->('something') or request()->get()->('something') and replace it with $request->something or request()->something and the deprecation warning no longer appears.