17 lines
258 B
PHP
17 lines
258 B
PHP
|
<?php
|
||
|
|
||
|
namespace Driver\SQL\Condition;
|
||
|
|
||
|
class CondOr extends Condition {
|
||
|
|
||
|
private $conditions;
|
||
|
|
||
|
public function __construct(...$conditions) {
|
||
|
$this->conditions = $conditions;
|
||
|
}
|
||
|
|
||
|
public function getConditions() { return $this->conditions; }
|
||
|
}
|
||
|
|
||
|
?>
|