Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / Annotation / Template.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures\Annotation;
4
5 /** @Annotation */
6 class Template
7 {
8     private $name;
9
10     public function __construct(array $values)
11     {
12         $this->name = isset($values['value']) ? $values['value'] : null;
13     }
14 }