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