| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | final class Update extends Action |
||
| 6 | { |
||
| 7 | public function future(bool $as_title = false): string |
||
| 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('updating', $as_title); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function past(bool $as_title = false): string |
||
| 26 | } |
||
| 27 | } |
||
| 28 |