Predis\Command\RawCommand::getId PHP 메소드

getId() 공개 메소드

public getId ( )
    public function getId()
    {
        return $this->commandID;
    }

Usage Example

예제 #1
0
 /**
  * @group disconnected
  */
 public function testNormalizesCommandIdentifiersToUppercase()
 {
     $command = new RawCommand(array('set', 'key', 'value'));
     $this->assertSame('SET', $command->getId());
 }