Skip to content

Commit

Permalink
Laravel 10 (#26)
Browse files Browse the repository at this point in the history
* Laravel 10

* Depreciation notice

callable
  • Loading branch information
apiaget committed Aug 14, 2023
1 parent 4661031 commit b7d1531
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"keywords": ["laravel", "log", "error", "mail on error"],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.*|^6.0|^7.0|^8.0|^9.0"
"illuminate/support": "5.*|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/LogEnvelope.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private function getExceptionData($exception)
$data['storage'] = array_filter($data['storage']);

// Censor sensitive field values
array_walk_recursive($data['storage'], 'self::censorSensitiveFields');
array_walk_recursive($data['storage'], self::censorSensitiveFields(...));

$count = $this->config['count'];

Expand Down

0 comments on commit b7d1531

Please sign in to comment.