/home/techb158/ileadtechnology.com/vendor/spatie/crawler/src
NameSizeModeActions
CrawlQueue/-0755rm
Exception/-0755rm
Handlers/-0755rm
CrawlAllUrls.php2040644editdlrm
Crawler.php134840644editdlrm
CrawlerRobots.php12420644editdlrm
CrawlInternalUrls.php4930644editdlrm
CrawlObserver.php13330644editdlrm
CrawlObserverCollection.php21440644editdlrm
CrawlProfile.php3220644editdlrm
CrawlSubdomains.php6580644editdlrm
CrawlUrl.php8580644editdlrm
LinkAdder.php37230644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/spatie/crawler/src/CrawlObserverCollection.php (2144B)
observers = $observers; $this->position = 0; } public function addObserver(CrawlObserver $observer) { $this->observers[] = $observer; } public function crawled(CrawlUrl $crawlUrl, ResponseInterface $response) { foreach ($this->observers as $crawlObserver) { $crawlObserver->crawled( $crawlUrl->url, $response, $crawlUrl->foundOnUrl ); } } public function crawlFailed(CrawlUrl $crawlUrl, RequestException $exception) { foreach ($this->observers as $crawlObserver) { $crawlObserver->crawlFailed( $crawlUrl->url, $exception, $crawlUrl->foundOnUrl ); } } public function current() { return $this->observers[$this->position]; } public function offsetGet($offset) { return isset($this->observers[$offset]) ? $this->observers[$offset] : null; } public function offsetSet($offset, $value) { if (is_null($offset)) { $this->observers[] = $value; } else { $this->observers[$offset] = $value; } } public function offsetExists($offset) { return isset($this->observers[$offset]); } public function offsetUnset($offset) { unset($this->observers[$offset]); } public function next() { $this->position++; } public function key() { return $this->position; } public function valid() { return isset($this->observers[$this->position]); } public function rewind() { $this->position = 0; } }