Files
predis/lib/Predis/Commands/HashExists.php
T

14 lines
213 B
PHP

<?php
namespace Predis\Commands;
class HashExists extends Command {
public function getId() {
return 'HEXISTS';
}
public function parseResponse($data) {
return (bool) $data;
}
}