| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | final class Remove 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('remove', $as_title); |
||
| 12 | } |
||
| 13 | |||
| 14 | public function present(bool $as_title = false): string |
||
| 19 | } |
||
| 20 | |||
| 21 | public function past(bool $as_title = false): string |
||
| 28 |