コード例 #1
0
ファイル: Pazpar2.php プロジェクト: navtis/xerxes-pazpar2
 public function __sleep()
 {
     return Parser::removeProperties(get_object_vars($this), array('client'));
 }
コード例 #2
0
ファイル: Database.php プロジェクト: navtis/xerxes-pazpar2
 /**
  * Serialize
  */
 public function __sleep()
 {
     // don't include config and simplexml elements
     return Parser::removeProperties(get_object_vars($this), array('config', 'xml'));
 }
コード例 #3
0
ファイル: Group.php プロジェクト: navtis/xerxes
 public function __sleep()
 {
     // don't include config & cache
     return Parser::removeProperties(get_object_vars($this), array('config', 'cache'));
 }