From 7cef5829431ab800573eef4ae00827303499dbbf Mon Sep 17 00:00:00 2001 From: Brandon Date: Wed, 5 Jun 2024 18:33:17 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Change=20the=20`init`=20hook=20p?= =?UTF-8?q?riority=20to=20`4`=20for=20improved=20compatibility=20(Fixes=20?= =?UTF-8?q?#59)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Poet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Poet.php b/src/Poet.php index 6c43e2f..0641000 100644 --- a/src/Poet.php +++ b/src/Poet.php @@ -73,6 +73,6 @@ public function __construct(Application $app) new $module($this->app, $this->config); } - }); + }, $this->app->config->get('poet.hookPriority', 4)); } }