|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00031 abstract class Zend_Amf_Parse_Serializer 00032 { 00038 protected $_stream; 00039 00046 public function __construct(Zend_Amf_Parse_OutputStream $stream) 00047 { 00048 $this->_stream = $stream; 00049 } 00050 00059 public abstract function writeTypeMarker(&$content, $markerType = null, $contentByVal = false); 00060 }