| 1 | <?php |
||
| 32 | class Fixture extends AbstractBeanAnnotation |
||
| 33 | { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * The annotation to define Doctrine Migration version. |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | const ANNOTATION = 'Fixture'; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * This method returns the class name as |
||
| 44 | * a string. |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public static function __getClass() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Returns the value of the name attribute. |
||
| 55 | * |
||
| 56 | * @return string|null The annotations name attribute |
||
| 57 | */ |
||
| 58 | public function getName() |
||
| 64 | } |
||
| 65 |