| Total Complexity | 6 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | abstract class AbstractSvgAvatar |
||
| 6 | { |
||
| 7 | public function create(string $from): string |
||
| 10 | } |
||
| 11 | |||
| 12 | abstract public function generate(string $from): string; |
||
| 13 | |||
| 14 | abstract protected function filename(string $from): string; |
||
| 15 | |||
| 16 | protected function save(string $contents, string $name): string |
||
| 43 |