basho / riak-php-client

PHP clients for Riak
Apache License 2.0
160 stars 69 forks source link

Fixed error in example code (inline docs) #115

Closed lastzero closed 8 years ago

lastzero commented 8 years ago

The docs suggest passing the argument $command to $command->execute() like this:

$command->execute($command);

That's obviously not correct. It must be

$command->execute();
christophermancini commented 8 years ago

Thanks @lastzero, can't believe I didn't notice that.