From 3c9db3ac539353410430953bb9ec6a80dc27e758 Mon Sep 17 00:00:00 2001 From: kj Date: Fri, 5 Jun 2026 13:28:19 -0300 Subject: [PATCH] refactor(neuron): remove return type hint from __get method --- src/Libs/Neuron.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Libs/Neuron.php b/src/Libs/Neuron.php index 97ff558..c148831 100644 --- a/src/Libs/Neuron.php +++ b/src/Libs/Neuron.php @@ -50,9 +50,9 @@ class Neuron * It returns null instead of triggering an E_NOTICE. * * @param string $index The name of the property being accessed. - * @return null Always returns null for undefined properties. + * @return null Always returns null for undefined properties. */ - public function __get(string $index): null + public function __get(string $index) { return null; }