mirror of
https://github.com/predis/predis.git
synced 2026-08-28 03:02:04 +00:00
17 lines
221 B
PHP
17 lines
221 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class HashExists extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'HEXISTS';
|
|
}
|
|
|
|
public function parseResponse($data)
|
|
{
|
|
return (bool) $data;
|
|
}
|
|
}
|