Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion migration-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ When breaking a series of boolean operators across multiple lines, the operator

## [Section 6.4 - Operator placement](https://www.php-fig.org/per/coding-style/#64-operator-placement)

When breaking a series of chained operations across multiple lines, the operator MUST be at the beginning of each line, not the end of each line, and all lines but the first MUST be indented. Examples include `??` and ternary conditionals.
When breaking a series of chained operations across multiple lines, the operator MUST be at the beginning of each line, not the end of each line, and all lines but the first MUST be indented. Examples include `??` and ternary conditionals. Ternaries MUST occupy 3 lines, never 2.

```php
<?php
Expand Down