mirror of
https://github.com/predis/predis.git
synced 2026-08-19 02:03:00 +00:00
18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
class ResponseQueued implements IReplyObject {
|
|
public function __toString() {
|
|
return 'QUEUED';
|
|
}
|
|
|
|
public function __get($property) {
|
|
return $property === 'queued';
|
|
}
|
|
|
|
public function __isset($property) {
|
|
return $property === 'queued';
|
|
}
|
|
}
|