Пример #1
0
 /**
  * @group redis-strings
  */
 public function testAppend()
 {
     $this->assertSame(5, $this->client->append('foo', 'Hello'));
     $this->assertSame(11, $this->client->append('foo', ' World'));
     $this->assertSame('Hello World', $this->client->get('foo'));
 }