doBinaryOperation() публичный статический Метод

Performs the binary operation on the supplied values.
public static doBinaryOperation ( mixed $left, string $operator, mixed $right ) : mixed
$left mixed
$operator string
$right mixed
Результат mixed
Пример #1
0
 /**
  * @expectedException \Pinq\PinqException
  */
 public function testInvalidBinary()
 {
     Binary::doBinaryOperation(null, '#', null);
 }