foo = $foo; } /** * @return mixed|string */ public function getFoo() { return $this->foo; } /** * @param $bar */ public function setBar($bar) { $this->bar = $bar; } /** * @return mixed|string */ public function getBar() { return $this->bar; } /** * @param $baz */ public function setBaz($baz) { $this->baz = $baz; } /** * @return mixed|string */ public function getBaz() { return $this->baz; } }