Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __construct( |
||
17 | $id, |
||
18 | $update_id, |
||
19 | $description, |
||
20 | $timestamp, |
||
21 | $state, |
||
22 | $filename, |
||
23 | $script |
||
24 | ) { |
||
25 | $this->id = $id; |
||
26 | $this->update_id = $update_id; |
||
27 | $this->description = $description; |
||
28 | $this->timestamp = $timestamp; |
||
29 | $this->state = $state; |
||
30 | $this->filename = $filename; |
||
31 | $this->script = $script; |
||
32 | } |
||
58 |