mirror of
https://github.com/predis/predis.git
synced 2026-08-23 00:01:09 +00:00
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeyKeysV12x extends KeyKeys {
|
|
public function parseResponse($data) {
|
|
return explode(' ', $data);
|
|
}
|
|
}
|