-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathClassName.php
More file actions
38 lines (30 loc) · 703 Bytes
/
ClassName.php
File metadata and controls
38 lines (30 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
declare(strict_types=1);
namespace Rector\Enum;
final class ClassName
{
/**
* @var string
*/
public const TEST_CASE_CLASS = 'PHPUnit\Framework\TestCase';
/**
* @var string
*/
public const MOCK_OBJECT = 'PHPUnit\Framework\MockObject\MockObject';
/**
* @var string
*/
public const DATE_TIME_INTERFACE = 'DateTimeInterface';
/**
* @var string
*/
public const JMS_TYPE = 'JMS\Serializer\Annotation\Type';
/**
* @var string
*/
public const DOCTRINE_ENTITY = 'Doctrine\ORM\Mapping\Entity';
/**
* @var string
*/
public const DATA_PROVIDER = 'PHPUnit\Framework\Attributes\DataProvider';
}