url = $url; $this->width = (int)$width; $this->height = (int)$height; } /** * Fetches the URL to the avatar image * * @return string */ public function getUrl() { return $this->url; } /** * @return int */ public function getWidth() { return $this->width; } /** * @return int */ public function getHeight() { return $this->height; } }