File manager - Edit - /home/linknsbh/linkat.online/vendor/spatie/crawler/src/CrawlUrl.php
Back
<?php namespace Spatie\Crawler; use Psr\Http\Message\UriInterface; class CrawlUrl { public UriInterface $url; public ?UriInterface $foundOnUrl = null; protected mixed $id; public static function create(UriInterface $url, ?UriInterface $foundOnUrl = null, $id = null): static { $static = new static($url, $foundOnUrl); if ($id !== null) { $static->setId($id); } return $static; } protected function __construct(UriInterface $url, $foundOnUrl = null) { $this->url = $url; $this->foundOnUrl = $foundOnUrl; } public function getId(): mixed { return $this->id; } public function setId($id): void { $this->id = $id; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.4 |
proxy
|
phpinfo
|
Settings