⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.184
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
1305819
/
cwd
/
www
/
vendor
/
spatie
/
crawler
/
src
/
View File Name :
CrawlUrl.php
<?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; } }