| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | public function __construct($stdClass) |
||
| 47 | { |
||
| 48 | $this->name = $stdClass->name; |
||
| 49 | $this->stars = $stdClass->stars; |
||
| 50 | $this->completedValue = $stdClass->value; |
||
| 51 | $this->targetValue = $stdClass->target; |
||
| 52 | $this->description = $stdClass->info; |
||
| 53 | |||
| 54 | if ( !empty($stdClass->completionInfo) ) |
||
| 55 | $this->completionInfo = $stdClass->completionInfo; |
||
| 56 | |||
| 57 | $this->villageType = $stdClass->village; |
||
| 58 | } |
||
| 59 | } |
||
| 60 | } |