| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 5 | class FileWasRenamed |
||
| 6 | { |
||
| 7 | private $old_path; |
||
| 8 | private $new_path; |
||
| 9 | |||
| 10 | public function __construct($old_path, $new_path) |
||
| 11 | { |
||
| 12 | $this->old_path = $old_path; |
||
| 13 | $this->new_path = $new_path; |
||
| 14 | } |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return string |
||
| 18 | */ |
||
| 19 | public function oldPath() |
||
| 20 | { |
||
| 21 | return $this->old_path; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function newPath() |
||
| 27 | } |
||
| 28 | } |
||
| 29 |