Автор: Luke Bakken (lbakken@basho.com)
Наследование: extends Basho\Riak\Command\Builder, implements Basho\Riak\Command\BuilderInterface, use trait Basho\Riak\Command\Builder\LocationTrait
Пример #1
0
 /**
  * Tests validate properly verifies the Bucket is not there
  *
  * @expectedException \Basho\Riak\Command\Builder\Exception
  */
 public function testValidateBucket()
 {
     $builder = new Command\Builder\UpdateHll(static::$riak);
     $builder->add('some_element');
     $builder->build();
 }