15 lines
224 B
PHP
15 lines
224 B
PHP
<?php
|
|
|
|
namespace Core\Driver\SQL\Condition;
|
|
|
|
class CondBool extends Condition {
|
|
|
|
private $value;
|
|
|
|
public function __construct($val) {
|
|
$this->value = $val;
|
|
}
|
|
|
|
public function getValue() { return $this->value; }
|
|
|
|
} |