for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Happyr\DoctrineSpecification\Operand;
class BitOr extends Bitwise
{
/**
* @param Operand|string $field
* @param Operand|string $value
*/
public function __construct($field, $value)
parent::__construct(self::B_OR, $field, $value);
}