mirror of
https://github.com/predis/predis.git
synced 2026-08-24 15:39:28 +00:00
10 lines
123 B
PHP
10 lines
123 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Get extends Command {
|
|
public function getId() {
|
|
return 'GET';
|
|
}
|
|
}
|