refactor(neuron): remove return type hint from __get method
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user