コード例 #1
0
ファイル: Tuple.php プロジェクト: neoparla/dbescaper
 public function getRealValue()
 {
     if (!$this->isValid()) {
         throw new BindingException('Not valid tuple definition');
     }
     return $this->value->buildValues($this->link);
 }
コード例 #2
0
ファイル: DbTupleTest.php プロジェクト: neoparla/dbescaper
 /**
  * @test
  */
 public function buildValuesWhenInvalidBindingType()
 {
     $fixture = new DbTuple('Invalid', array(1, 2, 'String'), DbTuple::WITHOUT_PARENTHESIS);
     $this->setExpectedException(__NAMESPACE__ . '\\Binding\\BindingException', 'Invalid binding type "Invalid"');
     $fixture->buildValues($this->getMockForAbstractClass('NeoParla\\DbEscaper\\Link'));
 }