| Total Complexity | 6 |
| Total Lines | 71 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class GetContextResponse |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $context; |
||
| 23 | |||
| 24 | /** @var Customer[] */ |
||
| 25 | protected $customers = []; |
||
| 26 | |||
| 27 | /** @var string */ |
||
| 28 | protected $type; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function getContext() |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $context |
||
| 40 | * |
||
| 41 | * @return GetContextResponse |
||
| 42 | */ |
||
| 43 | public function setContext($context) |
||
| 44 | { |
||
| 45 | $this->context = $context; |
||
| 46 | |||
| 47 | return $this; |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return Customer[] |
||
| 52 | */ |
||
| 53 | public function getCustomers() |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @param Customer[] $customers |
||
| 60 | * |
||
| 61 | * @return GetContextResponse |
||
| 62 | */ |
||
| 63 | public function setCustomers($customers) |
||
| 64 | { |
||
| 65 | $this->customers = $customers; |
||
| 66 | |||
| 67 | return $this; |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @return string |
||
| 72 | */ |
||
| 73 | public function getType() |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * @param string $type |
||
| 80 | * |
||
| 81 | * @return GetContextResponse |
||
| 82 | */ |
||
| 83 | public function setType($type) |
||
| 88 | } |
||
| 89 | } |
||
| 90 |