| 1 | <?php |
||
| 18 | class Result implements ExportableInterface { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * lack of cohesion of methods |
||
| 22 | * |
||
| 23 | * @var int |
||
| 24 | */ |
||
| 25 | private $lcom; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @inheritdoc |
||
| 29 | */ |
||
| 30 | public function asArray() { |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param int $lcom |
||
| 38 | */ |
||
| 39 | public function setLcom($lcom) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return int |
||
| 46 | */ |
||
| 47 | public function getLcom() |
||
| 51 | |||
| 52 | } |