id = $id; } /** * Get ID. * * @return int * * @since 1.0.0 */ public function getId() { return $this->id; } /** * Get name. * * @return string * * @since 1.0.0 */ public function getName() { return $this->name; } /** * Set name. * * @param string $name Name of the article * * @return void * * @since 1.0.0 */ public function setName($name) : void { $this->name = $name; } /** * Get name. * * @return string * * @since 1.0.0 */ public function getDescription() { return $this->description; } /** * Set name. * * @param string $description Description of the warehouse * * @return void * * @since 1.0.0 */ public function setDescription($description) : void { $this->description = $description; } /** * Get location. * * @return \phpOMS\Stdlib\Base\Location * * @since 1.0.0 */ public function getLocation() { return $this->location; } /** * Set location. * * @param \phpOMS\Stdlib\Base\Location $location Location of the warehouse * * @return void * * @since 1.0.0 */ public function setLocation($location) : void { $this->location = $location; } }