コード例 #1
0
ファイル: CrawlerTrait.php プロジェクト: ncusoho/framework
 /**
  * Follow redirects from the last response.
  *
  * @return $this
  */
 protected function followRedirects()
 {
     while ($this->response->isRedirect()) {
         $this->makeRequest('GET', $this->response->getTargetUrl());
     }
     return $this;
 }