/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
spatie
/
crawler
/
src
/
CrawlQueue
/
/home/techb158/ileadtechnology.com/vendor/spatie/crawler/src/CrawlQueue
mkdir
upload
Name
Size
Mode
Actions
ArrayCrawlQueue.php
2220
0644
edit
dl
rm
CollectionCrawlQueue.php
2992
0644
edit
dl
rm
CrawlQueue.php
499
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/spatie/crawler/src/CrawlQueue/CrawlQueue.php
(499B)
<?php namespace Spatie\Crawler\CrawlQueue; use Spatie\Crawler\CrawlUrl; interface CrawlQueue { public function add(CrawlUrl $url): self; public function has($crawlUrl): bool; public function hasPendingUrls(): bool; public function getUrlById($id): CrawlUrl; /** @return \Spatie\Crawler\CrawlUrl|null */ public function getFirstPendingUrl(); public function hasAlreadyBeenProcessed(CrawlUrl $url): bool; public function markAsProcessed(CrawlUrl $crawlUrl); }
Save