| 1 | <?php |
||
| 8 | class VariableAssignmentLine |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var integer |
||
| 13 | */ |
||
| 14 | private $lineNumber; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $partBefore; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $partAfter; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param int $lineNumber |
||
| 28 | * @param string $partBefore |
||
| 29 | * @param string $partAfter |
||
| 30 | */ |
||
| 31 | public function __construct($lineNumber, $partBefore, $partAfter) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return int |
||
| 40 | */ |
||
| 41 | public function getLineNumber() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getPartBefore() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return string |
||
| 56 | */ |
||
| 57 | public function getPartAfter() |
||
| 61 | } |
||
| 62 |