From 3bcf1393b79a8dd101c42b0f5855a149d920f319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Tue, 3 Sep 2024 19:46:04 +0900 Subject: [PATCH] Automationn init... --- app/Controllers/CLI/Crawler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/CLI/Crawler.php b/app/Controllers/CLI/Crawler.php index 8c12b54..1900e61 100644 --- a/app/Controllers/CLI/Crawler.php +++ b/app/Controllers/CLI/Crawler.php @@ -16,7 +16,7 @@ class Crawler extends BaseController //1. MainPage $url = getenv("yamap.url.main"); $crawler = $library->getCrawlerByMainPage($url); - $links = $library->getLinks($crawler,); + $links = $library->getLinks($crawler); if (!count($links)) { throw new \Exception("Target Links가 없습니다."); }