| 1 | <?php |
||
| 8 | class ClassAdded extends Operation { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $code = 'V014'; |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $reason = 'Class was added.'; |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $fileAfter; |
||
| 21 | /** |
||
| 22 | * @var \PhpParser\Node\Stmt\Class_ |
||
| 23 | */ |
||
| 24 | protected $classAfter; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $fileAfter |
||
| 28 | * @param \PhpParser\Node\Stmt\Class_ $classAfter |
||
| 29 | */ |
||
| 30 | 1 | public function __construct($fileAfter, Class_ $classAfter) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function getLocation() |
||
| 40 | { |
||
| 41 | return $this->fileAfter; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return int |
||
| 46 | */ |
||
| 47 | public function getLine() |
||
| 48 | { |
||
| 49 | return $this->classAfter->getLine(); |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | 1 | public function getTarget() |
|
| 59 | } |
||
| 60 |