Find the interface and authorization defect in this proxy.
php
<?php
final class AdminProxy
{
public function __construct(private object $service) {}
public function __call(string $name, array $arguments): mixed
{
return $this->service->$name(...$arguments);
}
}