Commit 8a53cac1 authored by Mark Harding's avatar Mark Harding

(chore): add mocks for credentials

parent 0af81994
No related merge requests found
Pipeline #64078660 passed with stages
in 7 minutes and 10 seconds
......@@ -16,6 +16,8 @@ $CONFIG->cassandra = new stdClass;
$CONFIG->cassandra->keyspace = 'phpspec';
$CONFIG->cassandra->servers = ['127.0.0.1'];
$CONFIG->cassandra->cql_servers = ['127.0.0.1'];
$CONFIG->cassandra->username = 'cassandra';
$CONFIG->cassandra->password = 'cassandra';
$CONFIG->payments = [
'braintree' => [
......@@ -60,6 +62,11 @@ class Mock
return $this;
}
public function withCredentials($username, $password)
{
return $this;
}
public function withRetryPolicy()
{
return $this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment