| 1 | <?php |
||
| 12 | class Sessions extends BaseOutput |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * output for show API. |
||
| 16 | * |
||
| 17 | * @param OutputInterface $output |
||
| 18 | * @param array $response |
||
| 19 | */ |
||
| 20 | 1 | public function show(OutputInterface $output, array $response) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * output for open API. |
||
| 31 | * |
||
| 32 | * @param OutputInterface $output |
||
| 33 | * @param array $response |
||
| 34 | */ |
||
| 35 | 1 | public function open(OutputInterface $output, $response) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * output for close API. |
||
| 42 | * |
||
| 43 | * @param OutputInterface $output |
||
| 44 | * @param array $response |
||
| 45 | */ |
||
| 46 | 1 | public function close(OutputInterface $output, array $response) |
|
| 50 | } |
||
| 51 |