width = $width; $this->height = $height; } public function getWidth() { return $this->width; } public function getHeight() { return $this->height; } public function getInfos() { return array($this->width, $this->height); } public function correct() { return $this->width > 0 && $this->height > 0; } }