| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | public function __construct($module) |
||
| 30 | { |
||
| 31 | $this->module_id = $module->module_id; |
||
| 32 | $this->name = $module->name; |
||
| 33 | $this->filename = $module->filename; |
||
| 34 | $this->version = $module->version; |
||
| 35 | $this->supported_majors = $module->supported_majors; |
||
| 36 | $this->recommended_major = $module->recommended_major; |
||
| 37 | $this->package = $module->package; |
||
| 38 | $this->core = $module->core; |
||
| 39 | $this->project = $module->project; |
||
| 40 | $this->release_date = $module->release_date; |
||
| 41 | $this->flags = $module->tags; |
||
| 42 | } |
||
| 44 |