| 1 | <?php |
||
| 5 | class Tag |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | protected $tagName; |
||
| 9 | |||
| 10 | /** @var \Spatie\Menu\Html\Attributes */ |
||
| 11 | protected $attributes; |
||
| 12 | |||
| 13 | public function __construct(string $tagName, Attributes $attributes = null) |
||
| 18 | |||
| 19 | public static function make(string $tagName, Attributes $attributes = null) |
||
| 23 | |||
| 24 | public function withContents($contents): string |
||
| 32 | |||
| 33 | public function open(): string |
||
| 41 | |||
| 42 | public function close(): string |
||
| 46 | } |
||
| 47 |