| 1 | <?php |
||
| 15 | class InstanceOfOp extends AbstractExpressionCompiler |
||
| 16 | { |
||
| 17 | protected $name = 'PhpParser\Node\Expr\Instanceof_'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * $a instanceof Node |
||
| 21 | * $expr->expr instance of $expr->class |
||
| 22 | * |
||
| 23 | * @param \PhpParser\Node\Expr\Instanceof_ $expr |
||
| 24 | * @param Context $context |
||
| 25 | * @return CompiledExpression |
||
| 26 | */ |
||
| 27 | protected function compile($expr, Context $context) |
||
| 54 | } |
||
| 55 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.