gyro/core/lib/helpers/converters/none.converter.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * A converter that does nothing 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Lib 00007 */ 00008 class ConverterNone implements IConverter { 00009 public function encode($value, $params = false) { 00010 return $value; 00011 } 00012 00013 public function decode($value, $params = false) { 00014 return $value; 00015 } 00016 }