mirror of
https://github.com/predis/predis.git
synced 2026-08-19 23:31:49 +00:00
22 lines
354 B
PHP
22 lines
354 B
PHP
<?php
|
|
|
|
namespace Predis;
|
|
|
|
class ResponseQueued {
|
|
public $skipParse = true;
|
|
|
|
public function __toString() {
|
|
return 'QUEUED';
|
|
}
|
|
|
|
public function __get($property) {
|
|
if ($property === 'queued') {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public function __isset($property) {
|
|
return $property === 'queued';
|
|
}
|
|
}
|