refactor(neuron): remove return type hint from __get method

This commit is contained in:
kj
2026-06-05 13:28:19 -03:00
parent 2b5d19ecd5
commit 3c9db3ac53

View File

@@ -52,7 +52,7 @@ class Neuron
* @param string $index The name of the property being accessed. * @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; return null;
} }