mirror of
https://github.com/predis/predis.git
synced 2026-08-23 10:44:34 +00:00
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetIsMember extends Command {
|
|
public function getId() {
|
|
return 'SISMEMBER';
|
|
}
|
|
|
|
public function parseResponse($data) {
|
|
return (bool) $data;
|
|
}
|
|
}
|