for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Db\QueryBuilder\Condition;
/**
* Condition that connects two or more SQL expressions with the `AND` operator.
*/
final class OrCondition extends ConjunctionCondition
{
* Returns the operator that is represented by this condition class, e.g. `AND`, `OR`.
public function getOperator(): string
return 'OR';
}