|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00036 abstract class Zend_Amf_Parse_Deserializer 00037 { 00043 protected $_stream; 00044 00051 public function __construct(Zend_Amf_Parse_InputStream $stream) 00052 { 00053 $this->_stream = $stream; 00054 } 00055 00064 public abstract function readTypeMarker($markerType = null); 00065 }