Bump respect/coding-standard from 4 to 5

This commit is contained in:
Henrique Moody 2025-12-17 06:06:08 +01:00
commit cfeb01e89e
No known key found for this signature in database
GPG key ID: 221E9281655813A6
355 changed files with 1579 additions and 1879 deletions

View file

@ -54,11 +54,12 @@ test('Should go not overwrite file and line when it runs out of choices', functi
array_filter(
array_map(
fn($trace) => $trace['file'] ?? null,
debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)
)
)
debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS),
),
),
);
$trace[] = __FILE__;
throw new ValidationException('message', 'fullMessage', ['id' => 'message'], $trace);
} catch (ValidationException $e) {
expect($e->getFile())->toBe(__FILE__);