diff options
author | Marvin Borner | 2018-09-18 17:19:51 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-18 17:19:51 +0200 |
commit | 4a57c1fda6d50d655eb48ffb712bd43729ea5c10 (patch) | |
tree | 2071b9a9c51eb5e4f267d4319a0694debeef5815 /crawler/WebRequest.php | |
parent | 9e9442a222666c5aadb6db32140dadddcb807933 (diff) |
Tried to fix several small things :bug: :construction:
Diffstat (limited to 'crawler/WebRequest.php')
-rw-r--r-- | crawler/WebRequest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crawler/WebRequest.php b/crawler/WebRequest.php index a72efc6..f25f31d 100644 --- a/crawler/WebRequest.php +++ b/crawler/WebRequest.php @@ -7,7 +7,7 @@ class WebRequest { - public function getContent($url) + public static function getContent($url): array { $curl = curl_init($url); curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)'); |