Example: ```php <?php function doSomething(?string $param): string { // ... } ``` The **ternary-max-length** rule will fail because the function line has a `?` followed by a `:`.
Example:
The ternary-max-length rule will fail because the function line has a
?followed by a:.