| Total Complexity | 7 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class PlainFormatter implements Formatter |
||
| 10 | { |
||
| 11 | public function title(string $title): string |
||
| 12 | { |
||
| 13 | return str_pad($title, self::TITLE_LENGTH, ' ', STR_PAD_LEFT); |
||
| 14 | } |
||
| 15 | |||
| 16 | public function property(string $string): string |
||
| 17 | { |
||
| 18 | return $string; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function column(string $string): string |
||
| 22 | { |
||
| 23 | return $string; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function info(string $string): string |
||
| 27 | { |
||
| 28 | return $string; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function typecast(string $string): string |
||
| 32 | { |
||
| 33 | return $string; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function entity(string $string): string |
||
| 39 | } |
||
| 40 | |||
| 41 | public function error(string $string): string |
||
| 42 | { |
||
| 44 | } |
||
| 45 | } |
||
| 46 |