doBinaryOperation() public static method

Performs the binary operation on the supplied values.
public static doBinaryOperation ( mixed $left, string $operator, mixed $right ) : mixed
$left mixed
$operator string
$right mixed
return mixed
 /**
  * @expectedException \Pinq\PinqException
  */
 public function testInvalidBinary()
 {
     Binary::doBinaryOperation(null, '#', null);
 }