GetBindVariableMap() public method

Returns the key to value map.
public GetBindVariableMap ( )
 /**
  * @covers StatementBuilder::WithBindVariableValue
  */
 public function testWithBindingVariable()
 {
     $key = 'key';
     $value = 'value';
     $statementBuilder = new StatementBuilder();
     $statementBuilder->WithBindVariableValue($key, $value);
     $bindVariableMap = $statementBuilder->GetBindVariableMap();
     $this->assertEquals($value, $bindVariableMap[$key]->value);
 }