Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
fig
/
link-util
/
src
/
//proc/self/root/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/fig/link-util/src/Link.php
<?php namespace Fig\Link; use Psr\Link\EvolvableLinkInterface; class Link implements EvolvableLinkInterface { use EvolvableLinkTrait; /** * Link constructor. * * @param string $rel * A single relationship to include on this link. * @param string $href * An href for this link. */ public function __construct($rel = '', $href = '') { if ($rel) { $this->rel[$rel] = true; } $this->href = $href; } }