From 0230c7d10bbbf97b15332cee5eab4dc2a9da8874 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Tue, 27 Aug 2024 15:39:19 +1200 Subject: [PATCH] API Standardise extension hooks (#118) --- src/ErrorPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ErrorPage.php b/src/ErrorPage.php index db4c31d..1964f54 100644 --- a/src/ErrorPage.php +++ b/src/ErrorPage.php @@ -258,7 +258,7 @@ protected function getDefaultRecords() ] ]; - $this->extend('getDefaultRecords', $data); + $this->extend('updateDefaultRecords', $data); return $data; }