brightness; } /** * @param int $brightness */ public function setBrightness( $brightness){ $this->brightness = $brightness; } /** * @return boolean */ public function isOrientationForced(){ return $this->orientation_forced; } /** * @param boolean $orientation_forced */ public function setOrientationForced( $orientation_forced){ $this->orientation_forced = $orientation_forced; } /** * @return int */ public function getOrientation(){ return $this->orientation; } /** * @param int $orientation */ public function setOrientation( $orientation){ $this->orientation = $orientation; } }