| 1 | <?php |
||
| 8 | class InterfaceOperationUnary extends Operation { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $file; |
||
| 13 | /** |
||
| 14 | * @var \PhpParser\Node\Stmt\Interface_ |
||
| 15 | */ |
||
| 16 | protected $interface; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $fileAfter |
||
| 20 | * @param \PhpParser\Node\Stmt\Interface_ $interface |
||
| 21 | */ |
||
| 22 | 2 | public function __construct($fileAfter, Interface_ $interface) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getLocation() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return int |
||
| 38 | */ |
||
| 39 | public function getLine() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | 2 | public function getTarget() |
|
| 51 | } |
||
| 52 |