Namespace and ClassPath rewrites
This commit is contained in:
14
Core/Driver/SQL/Condition/CondAnd.class.php
Normal file
14
Core/Driver/SQL/Condition/CondAnd.class.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Core\Driver\SQL\Condition;
|
||||
|
||||
class CondAnd extends Condition {
|
||||
|
||||
private array $conditions;
|
||||
|
||||
public function __construct(...$conditions) {
|
||||
$this->conditions = $conditions;
|
||||
}
|
||||
|
||||
public function getConditions(): array { return $this->conditions; }
|
||||
}
|
||||
Reference in New Issue
Block a user