8000 [9.x] Change exception's handler ignore method to public by smujaddid · Pull Request #36550 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Change exception's handler ignore method to public #36550

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change exception's handler ignore method to public
  • Loading branch information
smujaddid committed Mar 11, 2021
commit 7a4acd5f2fe3ea9fb9b3f110c15fd624e1a5a0fa
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public function map($from, $to = null)
* @param string $class
* @return $this
*/
protected function ignore(string $class)
public function ignore(string $class)
{
$this->dontReport[] = $class;

Expand Down
0