e.g., `IndentTernaryConditions` disabled: ```php function multiline_parameters( string $first, ?string $second, int $third, ): ?string { return $first == $second ? $third : null; } ``` `IndentTernaryConditions` enabled: ```php function multiline_parameters( string $first, ?string $second, int $third, ): ?string { return $first == $second ? $third : null; } ```