-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathDoctrineClass.php
More file actions
22 lines (13 loc) · 818 Bytes
/
DoctrineClass.php
File metadata and controls
22 lines (13 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
declare(strict_types=1);
namespace Symplify\PHPStanRules\Enum;
final class DoctrineClass
{
public const string ODM_SERVICE_REPOSITORY = 'Doctrine\Bundle\MongoDBBundle\Repository\ServiceDocumentRepository';
public const string ODM_SERVICE_REPOSITORY_INTERFACE = 'Doctrine\Bundle\MongoDBBundle\Repository\ServiceDocumentRepositoryInterface';
public const string ORM_SERVICE_REPOSITORY = 'Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository';
public const string FIXTURE_INTERFACE = 'Doctrine\Common\DataFixtures\FixtureInterface';
public const string ENTITY_REPOSITORY = 'Doctrine\ORM\EntityRepository';
public const string CONNECTION = 'Doctrine\DBAL\Connection';
public const string DOCUMENT_REPOSITORY = 'Doctrine\ODM\MongoDB\Repository\DocumentRepository';
}