Skip to content

Commit

Permalink
Correctly indent ternary
Browse files Browse the repository at this point in the history
  • Loading branch information
schlessera committed Jan 8, 2024
1 parent faeda42 commit 60b07ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Exception/Http/HttpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ public static function dataInstantiateHttpException() {
$data = [];
foreach ($all_status_codes as $status) {
$classname = in_array($status, $non_exception_codes, true)
? StatusUnknown::class
: Http::class . '\Status' . $status;
? StatusUnknown::class
: Http::class . '\Status' . $status;

$data['Status ' . $status] = [$status, $classname];
}
Expand Down

0 comments on commit 60b07ad

Please sign in to comment.