`Generic.WhiteSpace.ScopeIndent` expects 4 more whitespace characters when using a ternary operator: ```php function failure($a) { $a = $a === true ? [ 'a' => 1, 'b' => 2, ] : [ 'a' => 100, 'b' => 99, ]; //Line indented incorrectly; expected at least 8 spaces, found 4 } ``` Alternatives using `?:` or `??` work fine with only 4 whitespace characters: ```php function success1($a) { $a = $a === true ?: [ 'a' => 1, 'b' => 2, ]; } function success2($a) { $a = $a === true ?? [ 'a' => 1, 'b' => 2, ]; } ``` Is this expected behaviour?