mirror of
https://github.com/predis/predis.git
synced 2026-08-23 03:21:34 +00:00
10 lines
145 B
PHP
10 lines
145 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class GetBit extends Command {
|
|
public function getCommandId() { return 'GETBIT'; }
|
|
}
|