mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:11:48 +00:00
9 lines
185 B
PHP
9 lines
185 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class HashDelete extends Command {
|
|
public function getId() { return 'HDEL'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|