1 | <?php |
||
5 | class Image |
||
6 | { |
||
7 | /** @var string */ |
||
8 | protected $path; |
||
9 | |||
10 | /** @var string */ |
||
11 | protected $apiEndpoint; |
||
12 | |||
13 | /** @var string */ |
||
14 | protected $method = 'fileToUpload'; |
||
15 | |||
16 | /** |
||
17 | * @param string $imagePath |
||
18 | * @param string $endpoint |
||
19 | */ |
||
20 | 1 | public function __construct($imagePath, $endpoint) |
|
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | 1 | public function getPath() |
|
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | 1 | public function getApiEndpoint() |
|
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | 1 | public function getMethod() |
|
50 | } |
||
51 |