mirror of
https://github.com/predis/predis.git
synced 2026-08-25 03:29:32 +00:00
17 lines
224 B
PHP
17 lines
224 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetIsMember extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'SISMEMBER';
|
|
}
|
|
|
|
public function parseResponse($data)
|
|
{
|
|
return (bool) $data;
|
|
}
|
|
}
|