mirror of
https://github.com/predis/predis.git
synced 2026-08-25 13:09:35 +00:00
12 lines
139 B
PHP
12 lines
139 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringSubstr extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'SUBSTR';
|
|
}
|
|
}
|