Skip to content

Commit c002b14

Browse files
committed
comment
1 parent 9a318ee commit c002b14

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/predis/Command/CommandDecorator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ public function __construct(CommandInterface $command)
2020
*/
2121
public function parseResponse($data)
2222
{
23-
return $data; // Ваша реализация
23+
return $data;
2424
}
2525

26-
// Делегируем все остальные вызовы оригинальной команде
2726
public function __call($method, $args)
2827
{
2928
return call_user_func_array([$this->originalCommand, $method], $args);

0 commit comments

Comments
 (0)