| 1 | <?php namespace FreedomCore\TrinityCore\Console\Commands; |
||
| 10 | class LFG extends BaseCommand |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Show information about current LFG queues |
||
| 15 | * @return array|string |
||
| 16 | */ |
||
| 17 | public function queue() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Cleans current queue, only for DEBUG |
||
| 24 | * @return array|string |
||
| 25 | */ |
||
| 26 | public function clean() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Shows current LFG options. |
||
| 33 | * IF value is set, updates existing value. |
||
| 34 | * @param string $value |
||
| 35 | * @return array|string |
||
| 36 | */ |
||
| 37 | public function options($value = '') |
||
| 41 | } |
||
| 42 |