| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 52 | public function testMissingMiddleExpression5dot2() |
||
| 53 | { |
||
| 54 | $this->_sniffFile = $this->sniffFile('sniff-examples/ternary_operator.php', '5.2'); |
||
| 55 | $this->assertWarning($this->_sniffFile, 8, |
||
| 56 | "Middle may not be omitted from ternary operators in PHP < 5.3"); |
||
| 57 | } |
||
| 58 | |||
| 59 | /** |
||
| 60 | * 5.3 does support elvis operator. |
||
| 72 |