| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class Entity |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Entity::$entityName |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $entityName; |
||
| 31 | |||
| 32 | // ------------------------------------------------------------------------ |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Entity::getEntityName |
||
| 36 | * |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function getEntityName() |
||
| 42 | } |
||
| 43 | |||
| 44 | // ------------------------------------------------------------------------ |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Entity::setEntityName |
||
| 48 | * |
||
| 49 | * @param string $entityName |
||
| 50 | */ |
||
| 51 | public function setEntityName($entityName) |
||
| 54 | } |
||
| 55 | } |