mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
29 lines
597 B
PHP
29 lines
597 B
PHP
<?php
|
|
// $Id$
|
|
/**
|
|
* Null Serializer
|
|
*
|
|
* @category HTML
|
|
* @package AJAX
|
|
* @author Joshua Eichorn <josh@bluga.net>
|
|
* @copyright 2005 Joshua Eichorn
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @version Release: 0.5.2
|
|
* @link http://pear.php.net/package/PackageName
|
|
*/
|
|
class HTML_AJAX_Serializer_Null
|
|
{
|
|
|
|
function serialize($input)
|
|
{
|
|
return $input;
|
|
}
|
|
|
|
function unserialize($input)
|
|
{
|
|
return $input;
|
|
}
|
|
}
|
|
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
|
?>
|