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