コード例 #1
0
ファイル: Node.php プロジェクト: tomcorbett/neo4jphp
 /**
  * Be sure to add our properties to the things to serialize
  *
  * @return array
  */
 public function __sleep()
 {
     return array_merge(parent::__sleep(), array('labels'));
 }
コード例 #2
0
ファイル: Relationship.php プロジェクト: pin-cnx/orientdb-php
 /**
  * Be sure to add our properties to the things to serialize
  *
  * @return array
  */
 public function __sleep()
 {
     return array_merge(parent::__sleep(), array('start', 'end', 'type'));
 }