| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function runActualTask($params = []): ?string |
||
| 32 | { |
||
| 33 | Git::inst($this->mu()) |
||
| 34 | ->deleteBranch( |
||
| 35 | $this->mu()->getGitRootDir(), |
||
| 36 | $this->mu()->getNameOfTempBranch() |
||
| 37 | ) |
||
| 38 | ->createNewBranch( |
||
| 39 | $this->mu()->getGitRootDir(), |
||
| 40 | $this->mu()->getNameOfTempBranch(), |
||
| 41 | $this->mu()->getNameOfUpgradeStarterBranch() |
||
| 42 | ); |
||
| 43 | return null; |
||
| 44 | } |
||
| 51 |