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 / Form / Annotation / InputFilter.php
blob926059b6a25e38456cd2cb163f93644345f61d8c
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\Form\Annotation;
12 /**
13 * InputFilter annotation
15 * Use this annotation to specify a specific input filter class to use with the
16 * form. The value should be a string indicating the fully qualified class name
17 * of the input filter to use.
19 * @Annotation
21 class InputFilter extends AbstractStringAnnotation
23 /**
24 * Retrieve the input filter class
26 * @return null|string
28 public function getInputFilter()
30 return $this->value;