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

14 lines
208 B
PHP

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