equal
deleted
inserted
replaced
12 * obtain it through the world-wide-web, please send an email |
12 * obtain it through the world-wide-web, please send an email |
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Amf |
16 * @package Zend_Amf |
17 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
17 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @version $Id: Request.php 20096 2010-01-06 02:05:09Z bkarwin $ |
19 * @version $Id: Request.php 24593 2012-01-05 20:35:02Z matthew $ |
20 */ |
20 */ |
21 |
21 |
22 /** @see Zend_Amf_Parse_InputStream */ |
22 /** @see Zend_Amf_Parse_InputStream */ |
23 require_once 'Zend/Amf/Parse/InputStream.php'; |
23 require_once 'Zend/Amf/Parse/InputStream.php'; |
24 |
24 |
38 * Handle the incoming AMF request by deserializing the data to php object |
38 * Handle the incoming AMF request by deserializing the data to php object |
39 * types and storing the data for Zend_Amf_Server to handle for processing. |
39 * types and storing the data for Zend_Amf_Server to handle for processing. |
40 * |
40 * |
41 * @todo Currently not checking if the object needs to be Type Mapped to a server object. |
41 * @todo Currently not checking if the object needs to be Type Mapped to a server object. |
42 * @package Zend_Amf |
42 * @package Zend_Amf |
43 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
43 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
44 * @license http://framework.zend.com/license/new-bsd New BSD License |
44 * @license http://framework.zend.com/license/new-bsd New BSD License |
45 */ |
45 */ |
46 class Zend_Amf_Request |
46 class Zend_Amf_Request |
47 { |
47 { |
48 /** |
48 /** |