Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Request/Batch.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function appendQueryId($queryId, array $values = []) {
* @param array $options
* @return string
*/
public static function queryParameters($consistency, array $options = []){
public static function queryParameters($consistency, array $options = [], array $values = []){
$flags = 0;
$optional = '';

Expand Down
2 changes: 1 addition & 1 deletion src/Response/Exception.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
namespace Cassandra\Response;

class Exception extends \Cassandra\Exception {}
class Exception implements \Cassandra\Exception {}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why implements? \Cassandra\Exception is class but not interface.