| Total Complexity | 4 |
| Total Lines | 52 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class AddCallResponse implements ResponseInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var int |
||
| 12 | */ |
||
| 13 | public $callId; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | public $balance; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | public $phone; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var \DateTime |
||
| 27 | */ |
||
| 28 | public $created; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param int $callId |
||
| 32 | */ |
||
| 33 | public function setCallId(int $callId): void |
||
| 34 | { |
||
| 35 | $this->callId = $callId; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $balance |
||
| 40 | */ |
||
| 41 | public function setBalance(string $balance): void |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $phone |
||
| 48 | */ |
||
| 49 | public function setPhone(string $phone): void |
||
| 50 | { |
||
| 51 | $this->phone = $phone; |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param \DateTime $created |
||
| 56 | */ |
||
| 57 | public function setCreated(\DateTime $created): void |
||
| 60 | } |
||
| 61 | } |
||
| 62 |