| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | final class Install extends Action |
||
| 6 | { |
||
| 7 | public function future(bool $as_title = false): string |
||
| 8 | { |
||
| 9 | $this->log('Convert text to TitleCase for ' . __FUNCTION__); |
||
| 10 | |||
| 11 | return $this->text('install', $as_title); |
||
| 12 | } |
||
| 13 | |||
| 14 | public function present(bool $as_title = false): string |
||
| 15 | { |
||
| 16 | $this->log('Convert text to TitleCase for ' . __FUNCTION__); |
||
| 17 | |||
| 18 | return $this->text('installing', $as_title); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function past(bool $as_title = false): string |
||
| 26 | } |
||
| 27 | } |
||
| 28 |