Since $__container_proxy_alias is declared private, accessing it with static will lead to errors in possible sub-classes; you can either use self, or increase the visibility of $__container_proxy_alias to at least protected.
Loading history...
21
3
->$name(...$arguments);
22
}
23
24
public static function __callStatic(string $name, array $arguments)
Since $__container_proxy_alias is declared private, accessing it with static will lead to errors in possible sub-classes; you can either use self, or increase the visibility of $__container_proxy_alias to at least protected.