We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a318ee commit c002b14Copy full SHA for c002b14
src/predis/Command/CommandDecorator.php
@@ -20,10 +20,9 @@ public function __construct(CommandInterface $command)
20
*/
21
public function parseResponse($data)
22
{
23
- return $data; // Ваша реализация
+ return $data;
24
}
25
26
- // Делегируем все остальные вызовы оригинальной команде
27
public function __call($method, $args)
28
29
return call_user_func_array([$this->originalCommand, $method], $args);
0 commit comments