mirror of
https://github.com/predis/predis.git
synced 2026-08-26 12:39:51 +00:00
11 lines
211 B
PHP
11 lines
211 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class Exists extends Command {
|
|
public function getCommandId() { return 'EXISTS'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|