diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-26 11:43:27 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-11-26 11:43:27 +0100 |
commit | 65adcbec2cc9a00a5b0611e34c7141bf4e6d63f7 (patch) | |
tree | 2a2f353f2f7b0fd6cde035068a2036ab630f688b /framework/PradoBase.php | |
parent | a1983c5f49f5ec95da2d3848a0250771a870534d (diff) | |
parent | 5632770c86d30361fe0c3eefc7d327786b478702 (diff) |
Merge branch 'jquery' of https://github.com/pradosoft/prado into jquery
Diffstat (limited to 'framework/PradoBase.php')
-rw-r--r-- | framework/PradoBase.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 6e884cec..0722d0fd 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -191,30 +191,6 @@ class PradoBase } /** - * Serializes a data. - * The original PHP serialize function has a bug that may not serialize - * properly an object. - * @param mixed data to be serialized - * @return string the serialized data - */ - public static function serialize($data) - { - return serialize($data); - } - - /** - * Unserializes a data. - * The original PHP unserialize function has a bug that may not unserialize - * properly an object. - * @param string data to be unserialized - * @return mixed unserialized data, null if unserialize failed - */ - public static function unserialize($str) - { - return unserialize($str); - } - - /** * Creates a component with the specified type. * A component type can be either the component class name * or a namespace referring to the path of the component class file. |