Ejemplo n.º 1
0
 /**
  * This will get the value of $strName
  *
  * @param string $strName Name of the property to get
  * @return mixed
  */
 public function __get($strName)
 {
     switch ($strName) {
         case 'AdditionalConditions':
             return $this->conAdditionalConditions;
         case 'AdditionalClauses':
             return $this->clsAdditionalClauses;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }