12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
-
- namespace Sensio\Bundle\FrameworkExtraBundle\Configuration;
-
-
-
-
- class Method extends ConfigurationAnnotation
- {
-
-
- protected $methods = array();
-
-
-
- public function getMethods()
- {
- return $this->methods;
- }
-
-
-
- public function setMethods($methods)
- {
- $this->methods = is_array($methods) ? $methods : array($methods);
- }
-
-
-
- public function setValue($methods)
- {
- $this->setMethods($methods);
- }
-
-
-
- public function getAliasName()
- {
- return 'method';
- }
- }
|