Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
75 | public function __construct($subscription) |
||
76 | { |
||
77 | $this->id = $subscription->id; |
||
78 | $this->uuid = $subscription->uuid; |
||
79 | $this->name = $subscription->name; |
||
80 | $this->start_at = $subscription->start_at; |
||
81 | $this->expire_at = $subscription->expire_at; |
||
82 | $this->product = $subscription->product; |
||
83 | $this->applications_total = $subscription->applications_total; |
||
84 | $this->applications_used = $subscription->applications_used; |
||
85 | $this->advisory_hours_total = $subscription->advisory_hours_total; |
||
86 | $this->advisory_hours_used = $subscription->advisory_hours_used; |
||
87 | $this->organization = $subscription->organization; |
||
88 | $this->flags = $subscription->flags; |
||
89 | $this->links = $subscription->_links; |
||
90 | } |
||
92 |