* @since 2.0 * * @property QuxInterface $qux */ class BarSetter extends BaseObject { /** * @var QuxInterface */ private $qux; /** * @return QuxInterface */ public function getQux() { return $this->qux; } /** * @param mixed $qux */ public function setQux(QuxInterface $qux) { $this->qux = $qux; } }