diff --git a/src/Libs/Neuron.php b/src/Libs/Neuron.php index 913a1e8..59678b1 100644 --- a/src/Libs/Neuron.php +++ b/src/Libs/Neuron.php @@ -38,9 +38,8 @@ class Neuron { * @param string $index * @return mixed */ - public function __get(string $index) { - return (isset($this->{$index}) && - $this->{$index} != '') ? $this->{$index} : null; + public function __get(string $index) : mixed { + return null; } }