__get() public method

public __get ( $strName )
Ejemplo n.º 1
0
 public function __get($strName)
 {
     switch ($strName) {
         case 'DisplayName':
             return $this->blnDisplayName;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }