Skip to content
This repository was archived by the owner on Apr 7, 2020. It is now read-only.

Commit 5f95717

Browse files
committed
Removed return type hints
1 parent edd1231 commit 5f95717

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EasyLogFormatter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ private function formatContext(array $record)
387387
*
388388
* @return array
389389
*/
390-
private function formatThrowableObjects(array $array): array
390+
private function formatThrowableObjects(array $array)
391391
{
392392
array_walk_recursive($array, function (&$value) {
393393
if ($value instanceof \Throwable) {
@@ -402,7 +402,7 @@ private function formatThrowableObjects(array $array): array
402402
return $array;
403403
}
404404

405-
private function formatThrowable(\Throwable $throwable): array
405+
private function formatThrowable(\Throwable $throwable)
406406
{
407407
return [
408408
'class' => get_class($throwable),

0 commit comments

Comments
 (0)