| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class MemberNames |
||
| 27 | { |
||
| 28 | |||
| 29 | /** |
||
| 30 | * This is a utility class, so protect it against direct |
||
| 31 | * instantiation. |
||
| 32 | */ |
||
| 33 | private function __construct() |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * This is a utility class, so protect it against cloning. |
||
| 39 | * |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | private function __clone() |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Name for the member 'entity_type_id'. |
||
| 48 | * |
||
| 49 | * @var string |
||
| 50 | */ |
||
| 51 | const ENTITY_TYPE_ID = 'entity_type_id'; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Name for the member 'frontend_input'. |
||
| 55 | * |
||
| 56 | * @var string |
||
| 57 | */ |
||
| 58 | const FRONTEND_INPUT = 'frontend_input'; |
||
| 59 | } |
||
| 60 |