Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
panther
/
src
/
DomCrawler
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/panther/src/DomCrawler/Link.php
<?php /* * This file is part of the Panther project. * * (c) Kévin Dunglas <dunglas@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace Symfony\Component\Panther\DomCrawler; use Facebook\WebDriver\WebDriverElement; use Symfony\Component\DomCrawler\Link as BaseLink; use Symfony\Component\Panther\ExceptionThrower; /** * @author Kévin Dunglas <dunglas@gmail.com> */ final class Link extends BaseLink { use ExceptionThrower; private $element; public function __construct(WebDriverElement $element) { $tagName = $element->getTagName(); if ('a' !== $tagName && 'area' !== $tagName && 'link' !== $tagName) { throw new \LogicException(\sprintf('Unable to navigate from a "%s" tag.', $tagName)); } $this->element = $element; $this->method = 'GET'; } public function getElement(): WebDriverElement { return $this->element; } public function getNode() { $this->throwNotSupported(__METHOD__); } protected function setNode(\DOMElement $node) { $this->throwNotSupported(__METHOD__); } protected function getRawUri() { return $this->element->getAttribute('href'); } }