| Total Complexity | 3 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | class DetectVehicle extends Rpc |
||
| 44 | { |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string $value |
||
| 48 | * |
||
| 49 | * @return $this |
||
| 50 | */ |
||
| 51 | public function withImageType($value) |
||
| 57 | } |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @param string $value |
||
| 61 | * |
||
| 62 | * @return $this |
||
| 63 | */ |
||
| 64 | public function withImageURL($value) |
||
| 65 | { |
||
| 66 | $this->data['ImageURL'] = $value; |
||
| 67 | $this->options['form_params']['ImageURL'] = $value; |
||
| 68 | |||
| 69 | return $this; |
||
| 70 | } |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @param string $value |
||
| 74 | * |
||
| 75 | * @return $this |
||
| 76 | */ |
||
| 77 | public function withImageContent($value) |
||
| 83 | } |
||
| 84 | } |
||
| 85 |