mirror of
https://github.com/predis/predis.git
synced 2026-08-20 09:25:58 +00:00
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ZSetScore extends Command {
|
|
public function getId() {
|
|
return 'ZSCORE';
|
|
}
|
|
}
|