| 1 | <?php  | 
            ||
| 10 | class NotIdentical extends AbstractExpressionCompiler  | 
            ||
| 11 | { | 
            ||
| 12 | protected $name = 'PhpParser\Node\Expr\BinaryOp\NotIdentical';  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | * It's used in conditions  | 
            ||
| 16 |      * {left-expr} !== {right-expr} | 
            ||
| 17 | *  | 
            ||
| 18 | * @param \PhpParser\Node\Expr\BinaryOp\NotIdentical $expr  | 
            ||
| 19 | * @param Context $context  | 
            ||
| 20 | * @return CompiledExpression  | 
            ||
| 21 | */  | 
            ||
| 22 | 16 | protected function compile($expr, Context $context)  | 
            |
| 36 | }  | 
            ||
| 37 |