| 1 | <?php |
||
| 10 | class DoNotUseGoto implements Pass\ConfigurablePassInterface, Pass\AnalyzerPassInterface |
||
| 11 | { |
||
| 12 | use ConfigurablePassTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param Stmt\Goto_ $stmt |
||
| 16 | * @param Context $context |
||
| 17 | * @return bool |
||
| 18 | */ |
||
| 19 | 1 | public function pass(Stmt\Goto_ $stmt, Context $context) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | 1 | public function getRegister() |
|
| 35 | } |
||
| 36 |