1 | <?php |
||
14 | class CommandRatePlugin extends BasePlugin |
||
15 | { |
||
16 | public $cmds = [ |
||
17 | ['put', 'cmd-put', 'Put'], |
||
18 | ['reserve', 'cmd-reserve', 'Reserve'], |
||
19 | ['reserve_timeout', 'cmd-reserve-with-timeout', 'Reserve with timeout'], |
||
20 | ['delete', 'cmd-delete', 'Delete'], |
||
21 | ['touch', 'cmd-touch', 'Touch'], |
||
22 | ['release', 'cmd-release', 'Release'], |
||
23 | ['bury', 'cmd-bury', 'Bury'], |
||
24 | ]; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function config() |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function data() |
||
59 | } |
||
60 |