summaryrefslogtreecommitdiff
path: root/src/Etym.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Etym.php')
-rw-r--r--src/Etym.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Etym.php b/src/Etym.php
index 1098021..10e22d7 100644
--- a/src/Etym.php
+++ b/src/Etym.php
@@ -2,6 +2,7 @@
namespace App;
+use App\Curl;
use PHPHtmlParser\Dom;
/**
@@ -43,7 +44,7 @@ class Etym
$targetURL = $this->baseURL . $input;
$dom = new Dom;
- $dom->load($targetURL);
+ $dom->loadFromUrl($targetURL, [], new Curl);
$html = $dom->find($this->domSearch);
if (!$html instanceof \PHPHtmlParser\Dom\Collection || count($html) <= 0) {