Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Serializer / Adapter / WddxOptions.php
blob361af4cf77f30f44a4cb92f433fdeaf65127e838
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Serializer\Adapter;
13 class WddxOptions extends AdapterOptions
15 /**
16 * Wddx packet header comment
18 * @var string
20 protected $comment = '';
22 /**
23 * Set WDDX header comment
25 * @param string $comment
26 * @return WddxOptions
28 public function setComment($comment)
30 $this->comment = (string) $comment;
31 return $this;
34 /**
35 * Get WDDX header comment
37 * @return string
39 public function getComment()
41 return $this->comment;