mirror of
https://github.com/predis/predis.git
synced 2026-08-25 01:29:38 +00:00
10 lines
129 B
PHP
10 lines
129 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetBit extends Command {
|
|
public function getId() {
|
|
return 'SETBIT';
|
|
}
|
|
}
|