|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00034 class Zend_Amf_Value_MessageHeader 00035 { 00041 public $name; 00042 00048 public $mustRead; 00049 00055 public $length; 00056 00062 public $data; 00063 00072 public function __construct($name, $mustRead, $data, $length=null) 00073 { 00074 $this->name = $name; 00075 $this->mustRead = (bool) $mustRead; 00076 $this->data = $data; 00077 if (null !== $length) { 00078 $this->length = (int) $length; 00079 } 00080 } 00081 }