Skip to content

Commit

Permalink
Removed unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
Hectorhammett committed Sep 25, 2024
1 parent b770674 commit 566c414
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/Logging/LoggingTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,23 +133,4 @@ private function getJwtToken(array $headers): null|array
'token' => base64_decode($token)
];
}

/**
* @param array<string, mixed> $arr
* @return array<string, mixed>
*/
private function removeNullsFromLog(array $arr): array
{
$result = [];

foreach ($arr as $key => $value) {
if (is_null($value)) {
continue;
}

if (is_array($value)) {

}
}
}
}

0 comments on commit 566c414

Please sign in to comment.