Skip to content

Commit 6a19a86

Browse files
authored
use single indent for multiline ternarys (#54971)
this continues on some of my earlier formatting changes. you can read #53748 for my arguments why single indent is better.
1 parent 22f183f commit 6a19a86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Pipeline.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ protected function carry()
206206
}
207207

208208
$carry = method_exists($pipe, $this->method)
209-
? $pipe->{$this->method}(...$parameters)
210-
: $pipe(...$parameters);
209+
? $pipe->{$this->method}(...$parameters)
210+
: $pipe(...$parameters);
211211

212212
return $this->handleCarry($carry);
213213
} catch (Throwable $e) {

0 commit comments

Comments
 (0)