from_ip; } /** * @param string $from_ip */ public function setFromIp(string $from_ip): void { $this->from_ip = $from_ip; } /** * @return string */ public function getExceptionType(): string { return $this->exception_type; } /** * @param string $exception_type */ public function setExceptionType(string $exception_type): void { $this->exception_type = $exception_type; } /** * @return Client */ public function getClient(): Client { return $this->client; } /** * @param Client $client */ public function setClient(Client $client): void { $this->client = $client; } /** * @param $name * @return mixed */ public function __get($name) { return $this->{$name}; } }