Example #1
0
 public function __sleep()
 {
     return Parser::removeProperties(get_object_vars($this), array('client'));
 }
Example #2
0
 /**
  * Serialize
  */
 public function __sleep()
 {
     // don't include config and simplexml elements
     return Parser::removeProperties(get_object_vars($this), array('config', 'xml'));
 }
Example #3
0
 public function __sleep()
 {
     // don't include config & cache
     return Parser::removeProperties(get_object_vars($this), array('config', 'cache'));
 }