Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class InstagramResumableUploadException extends InstagramSDKException |
||
11 | { |
||
12 | protected $startOffset; |
||
13 | |||
14 | protected $endOffset; |
||
15 | |||
16 | /** |
||
17 | * @return int|null |
||
18 | */ |
||
19 | public function getStartOffset() |
||
20 | { |
||
21 | return $this->startOffset; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param int|null $startOffset |
||
26 | */ |
||
27 | public function setStartOffset($startOffset) |
||
28 | { |
||
29 | $this->startOffset = $startOffset; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return int|null |
||
34 | */ |
||
35 | public function getEndOffset() |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @param int|null $endOffset |
||
42 | */ |
||
43 | public function setEndOffset($endOffset) |
||
46 | } |
||
47 | } |
||
48 |