Preview: Url.php
Size: 323 B
/proc/thread-self/root/home/byroehnu/easetack.com/vendor/spatie/crawler/src/Url.php
<?php
namespace Spatie\Crawler;
use GuzzleHttp\Psr7\Uri;
class Url extends Uri
{
public function __construct(
protected string $link,
protected ?string $linkText,
) {
parent::__construct($link);
}
public function linkText(): ?string
{
return $this->linkText;
}
}
Directory Contents
Dirs: 6 × Files: 5