2020-04-02 00:02:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Driver\SQL\Condition;
|
|
|
|
|
|
|
|
class CondOr extends Condition {
|
|
|
|
|
2020-04-03 17:39:58 +02:00
|
|
|
private array $conditions;
|
2020-04-02 00:02:51 +02:00
|
|
|
|
|
|
|
public function __construct(...$conditions) {
|
|
|
|
$this->conditions = $conditions;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConditions() { return $this->conditions; }
|
2020-04-03 17:39:58 +02:00
|
|
|
}
|