mirror of
https://github.com/predis/predis.git
synced 2026-08-23 12:13:19 +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; }
|
|
}
|