Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
84 | public function __construct( |
||
85 | int $remoteId, |
||
86 | ?string $name, |
||
87 | string $email, |
||
88 | ?string $password, |
||
89 | ?string $updated, |
||
90 | string $created, |
||
91 | string $action |
||
92 | ) |
||
93 | { |
||
94 | $this->remoteId = $remoteId; |
||
95 | $this->name = $name; |
||
96 | $this->email = $email; |
||
97 | $this->password = $password; |
||
98 | $this->updated = new Carbon($updated); |
||
99 | $this->created = new Carbon($created); |
||
100 | $this->remoteAction = $action; |
||
101 | } |
||
182 | } |