Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
/*
4
 * This file is part of the symfony package.
5
 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
 
11
/**
12
 * sfValidatorPass is an identity validator. It simply returns the value unmodified.
13
 *
14
 * @package    symfony
15
 * @subpackage validator
16
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
17
 * @version    SVN: $Id: sfValidatorPass.class.php 7902 2008-03-15 13:17:33Z fabien $
18
 */
19
class sfValidatorPass extends sfValidatorBase
20
{
21
  /**
22
   * @see sfValidatorBase
23
   */
24
  public function clean($value)
25
  {
26
    return $this->doClean($value);
27
  }
28
 
29
  /**
30
   * @see sfValidatorBase
31
   */
32
  protected function doClean($value)
33
  {
34
    return $value;
35
  }
36
}