gyro/core/lib/interfaces/iserializable.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Class that can be serialized 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface ISerializable { 00009 public function serialize(); 00010 } 00011 ?>