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