| 1 | <?php |
||
| 5 | class Unknown extends Operation |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $code = 'V000'; |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $reason = 'Reason unknown.'; |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $fileBefore; |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $fileAfter; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $fileBefore |
||
| 26 | * @param string $fileAfter |
||
| 27 | */ |
||
| 28 | public function __construct($fileBefore = null, $fileAfter = null) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getLocation() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return int |
||
| 44 | */ |
||
| 45 | public function getLine() |
||
| 49 | } |
||
| 50 |