| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class MetadataItem implements MetadataItemContract, \Stringable |
||
| 8 | { |
||
| 9 | public function __construct(protected string $name, protected string $content) |
||
| 11 | } |
||
| 12 | |||
| 13 | public function __toString(): string |
||
| 14 | { |
||
| 15 | return '<meta name="'.e($this->name).'" content="'.e($this->content).'">'; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function uniqueKey(): string |
||
| 21 | } |
||
| 22 | } |
||
| 23 |