Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | public function __construct(object $module) |
||
35 | { |
||
36 | $this->module_id = $module->module_id; |
||
37 | $this->name = $module->name; |
||
38 | $this->filename = $module->filename; |
||
39 | $this->version = $module->version; |
||
40 | $this->supported_majors = $module->supported_majors; |
||
41 | $this->recommended_major = $module->recommended_major; |
||
42 | $this->package = $module->package; |
||
43 | $this->core = $module->core; |
||
44 | $this->project = $module->project; |
||
45 | $this->release_date = $module->release_date; |
||
46 | $this->flags = $module->flags; |
||
47 | $this->tags = $module->tags; |
||
48 | } |
||
50 |