Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / IntefaceWithConstants.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5 interface IntefaceWithConstants
6 {
7
8     const SOME_VALUE = 'IntefaceWithConstants.SOME_VALUE';
9     const SOME_KEY   = 'IntefaceWithConstants.SOME_KEY';
10 }