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