| Total Complexity | 4 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class DeleteRecordingsParameters extends BaseParameters |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | private $recordingId; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * DeleteRecordingsParameters constructor. |
||
| 35 | * |
||
| 36 | * @param $recordingId |
||
| 37 | */ |
||
| 38 | public function __construct($recordingId) |
||
| 39 | { |
||
| 40 | $this->recordingId = $recordingId; |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getRecordingId() |
||
| 47 | { |
||
| 48 | return $this->recordingId; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param string $recordingId |
||
| 53 | * |
||
| 54 | * @return DeleteRecordingsParameters |
||
| 55 | */ |
||
| 56 | public function setRecordingId($recordingId) |
||
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return string |
||
| 65 | */ |
||
| 66 | public function getHTTPQuery() |
||
| 69 | } |
||
| 70 | } |
||
| 71 |