mirror of
https://github.com/predis/predis.git
synced 2026-08-20 13:22:07 +00:00
10 lines
152 B
PHP
10 lines
152 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeysV12x extends Keys {
|
|
public function parseResponse($data) {
|
|
return explode(' ', $data);
|
|
}
|
|
}
|