Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function __construct( |
||
21 | string $deviceId, |
||
22 | string $type = self::SOURCE_TYPE_WEB, |
||
23 | string $appVersion = self::APP_VERSION, |
||
24 | string $userAgent = self::USER_AGENT |
||
25 | ) { |
||
26 | $this->type = $type; |
||
27 | $this->deviceId = $deviceId; |
||
28 | $this->appVersion = $appVersion; |
||
29 | $this->userAgent = $userAgent; |
||
30 | } |
||
42 |