| Total Complexity | 11 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Coverage | 38.1% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Loggable extends ConfigurationAnnotation |
||
| 12 | { |
||
| 13 | |||
| 14 | protected $type; |
||
| 15 | private $actionLogId; |
||
| 16 | |||
| 17 | public function allowArray() |
||
| 18 | { |
||
| 19 | return true; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getAliasName() |
||
| 25 | } |
||
| 26 | |||
| 27 | 1 | public function setType($type) |
|
| 28 | { |
||
| 29 | 1 | $this->type = $type; |
|
| 30 | |||
| 31 | 1 | return $this->type; |
|
| 32 | } |
||
| 33 | |||
| 34 | public function getType() |
||
| 45 | } |
||
| 46 | } |
||
| 47 | |||
| 48 | 1 | public function setActionLogId($id) |
|
| 49 | { |
||
| 50 | 1 | $this->actionLogId = $id; |
|
| 51 | |||
| 52 | 1 | return $this; |
|
| 53 | } |
||
| 54 | |||
| 55 | 1 | public function getActionLogId() |
|
| 58 | } |
||
| 59 | |||
| 61 |