| 1 | <?php |
||
| 15 | class StatementsInjector |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @param Node\Stmt[] $stmts $stmts |
||
| 19 | * @param string $target |
||
| 20 | * @param Node\Stmt[] $injection |
||
| 21 | * @return Node\Stmt[] |
||
| 22 | */ |
||
| 23 | public function inject(array $stmts, string $target, array $injection): array |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param Node\Stmt[] $stmts |
||
| 30 | * @param string $target |
||
| 31 | * @return int |
||
| 32 | */ |
||
| 33 | private function injectionID(array $stmts, string $target): int |
||
| 43 | } |
||
| 44 |