diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/run.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/run.php b/scripts/run.php index 59af4be..5ee1c05 100644 --- a/scripts/run.php +++ b/scripts/run.php @@ -6,9 +6,8 @@ use App\Etym; $baseURL = "http://www.etymonline.com/word/"; $htmlNode = "section[class^='word__defination']"; -$pasteCmd = "../pastebinit -b http://p.of.je"; -$etym = new Etym($baseURL, $htmlNode, $pasteCmd); +$etym = new Etym($baseURL, $htmlNode); $result = $etym->getDefinition(); echo $result . PHP_EOL; |