| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class RecogniseImage { |
||
| 6 | /** @var int */ |
||
| 7 | private $imageId; |
||
| 8 | |||
| 9 | /** @var bool */ |
||
| 10 | private $overwrite; |
||
| 11 | |||
| 12 | public function __construct(int $imageId, bool $overwrite = false) { |
||
| 13 | $this->imageId = $imageId; |
||
| 14 | $this->overwrite = $overwrite; |
||
| 15 | } |
||
| 16 | public function getImageId(): int { |
||
| 17 | return $this->imageId; |
||
| 18 | } |
||
| 19 | public function getOverwrite(): bool { |
||
| 21 | } |
||
| 22 | } |