Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
43 | public function __construct( |
||
44 | int $id, |
||
45 | string $lineNumber, |
||
46 | string $SMSMessageBody, |
||
47 | string $mobileNumber, |
||
48 | string $typeOfMessage, |
||
49 | string $receiveAtLatin, |
||
50 | string $receiveAtJalali |
||
51 | ) { |
||
52 | $this->id = $id; |
||
53 | $this->lineNumber = $lineNumber; |
||
54 | $this->mobileNumber = $mobileNumber; |
||
55 | $this->SMSMessageBody = $SMSMessageBody; |
||
56 | $this->typeOfMessage = $typeOfMessage; |
||
57 | $this->receiveAtJalali = $receiveAtJalali; |
||
58 | $this->receiveAtLatin = $receiveAtLatin; |
||
59 | } |
||
61 |