-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathSensioAttribute.php
More file actions
38 lines (30 loc) · 858 Bytes
/
SensioAttribute.php
File metadata and controls
38 lines (30 loc) · 858 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\Symfony\Enum;
final class SensioAttribute
{
/**
* @var string
*/
public const PARAM_CONVERTER = 'Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter';
/**
* @var string
*/
public const ENTITY = 'Sensio\\Bundle\\FrameworkExtraBundle\\Configuration\\Entity';
/**
* @var string
*/
public const METHOD = 'Sensio\Bundle\FrameworkExtraBundle\Configuration\Method';
/**
* @var string
*/
public const TEMPLATE = 'Sensio\Bundle\FrameworkExtraBundle\Configuration\Template';
/**
* @var string
*/
public const IS_GRANTED = 'Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted';
/**
* @var string
*/
public const SECURITY = 'Sensio\Bundle\FrameworkExtraBundle\Configuration\Security';
}