Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / NamespaceWithClosureDeclaration.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5 $var = 1;
6 function () use ($var) {};
7
8 use Doctrine\Tests\Common\Annotations\Fixtures\Annotation\Secure;
9 use Doctrine\Tests\Common\Annotations\Fixtures\Annotation\Route;
10 use Doctrine\Tests\Common\Annotations\Fixtures\Annotation\Template;
11
12 $var = 1;
13 function () use ($var) {};
14
15 class NamespaceWithClosureDeclaration {}