Files
predis/lib/Predis/Commands/HashExists.php
T
2011-10-18 15:51:55 +02:00

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;
}
}