Пример #1
0
 /**
  * Проверяет установленно ил свойство
  *
  * @return boolean
  */
 public function __isset($property)
 {
     switch ($property) {
         case 'exit_status':
             return true;
         default:
             return parent::__isset($property);
     }
 }
Пример #2
0
 /**
  * Конструктор
  *
  */
 public function __construct()
 {
     parent::__construct(tmpfile());
 }