| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | abstract class BaseTag extends Model implements TagInterface |
||
| 23 | { |
||
| 24 | use TagTrait; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function __toString(): string |
||
| 30 | { |
||
| 31 | return $this->render(); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Render the tag |
||
| 36 | * |
||
| 37 | * @return Markup |
||
| 38 | */ |
||
| 39 | public function render(): Markup |
||
| 42 | } |
||
| 43 | } |
||
| 44 |