From 79c92da8c14de61dccc015f04c3900aac4bd4179 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 24 Apr 2019 11:01:37 +0200 Subject: Formatting ```bash php-cs-fixer fix --allow-risky=yes --rules=@PSR2,psr4,mb_str_functions.php_unit_construct,php_unit_ordered_covers,trailing_comma_in_multiline_array --rules='{"array_syntax": {"syntax":"short"}}' [tests/|src/] ``` --- src/Exceptions/Handlers/LegacyDevelopment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Exceptions/Handlers/LegacyDevelopment.php') diff --git a/src/Exceptions/Handlers/LegacyDevelopment.php b/src/Exceptions/Handlers/LegacyDevelopment.php index 86f86f4c..cfa4efa4 100644 --- a/src/Exceptions/Handlers/LegacyDevelopment.php +++ b/src/Exceptions/Handlers/LegacyDevelopment.php @@ -48,7 +48,7 @@ class LegacyDevelopment extends Legacy $return[] = [ 'file' => $path . ':' . $line, - $functionName => isset($trace['args']) ? $trace['args'] : null, + $functionName => $trace['args'] ?? null, ]; } -- cgit v1.2.3-54-g00ecf