コード例 #1
0
ファイル: Crawler.php プロジェクト: hedii/php-crawler
 /**
  * Get the search's url that has not been crawled yet.
  *
  * @return mixed
  */
 protected function getNextNotCrawledUrl()
 {
     return $this->search->urls()->where('crawled', '0')->first();
 }