From 913f82f3d84d314350095aac9dab46df2fa3555d Mon Sep 17 00:00:00 2001 From: George Kelly Date: Fri, 28 Sep 2018 03:05:58 -0700 Subject: [PATCH] fix(Extract): make Extract::suffixExists protected (#35) fix(Extract): make Extract::suffixExists protected --- src/Extract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Extract.php b/src/Extract.php index 8c15319..af08a84 100644 --- a/src/Extract.php +++ b/src/Extract.php @@ -359,7 +359,7 @@ private function parseSuffix($hostname) * * @return bool */ - private function suffixExists($entry) + protected function suffixExists($entry) { if (!$this->suffixStore->isExists($entry)) { return false;