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

@@ -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;
}