mirror of
https://github.com/predis/predis.git
synced 2026-08-24 12:19:35 +00:00
11 lines
216 B
PHP
11 lines
216 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class HashExists extends Command {
|
|
public function getCommandId() { return 'HEXISTS'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|