| 1 | <?php |
||
| 8 | class Cards extends Endpoint |
||
| 9 | { |
||
| 10 | |||
| 11 | use BelongsToOrganization, CrudEndpoint; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $endpoint = 'cards'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $widgetCommonId |
||
| 20 | * @return mixed |
||
| 21 | */ |
||
| 22 | public function getAll($widgetCommonId) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $cardId |
||
| 29 | * @param bool $everywhere |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function delete($cardId, $everywhere) |
||
| 42 | } |