| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class GetFile extends AbstractMethod |
||
| 16 | { |
||
| 17 | const NAME = 'getFile'; |
||
| 18 | |||
| 19 | const RETURN_ENTITY = File::class; |
||
| 20 | |||
| 21 | protected $file_id; |
||
| 22 | |||
| 23 | protected $supportedProperties = [ |
||
| 24 | 'file_id' => true |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | public function getFileId() |
||
| 31 | { |
||
| 32 | return $this->file_id; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param mixed $file_id |
||
| 37 | * |
||
| 38 | * @return $this |
||
| 39 | */ |
||
| 40 | public function setFileId($file_id) |
||
| 45 | } |
||
| 46 | } |
||
| 47 |