| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | #[Attribute(Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)] |
||
| 10 | final class Embed |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Relation |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $rel; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Embed resource uri |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $src; |
||
| 25 | |||
| 26 | /** @param array{rel?: string, src?: string} $values */ |
||
| 27 | public function __construct(array $values = [], string $rel = '', string $src = '') |
||
| 33 |