2021-01-13 01:36:04 +01:00
|
|
|
<?php
|
|
|
|
|
2021-01-13 15:26:30 +01:00
|
|
|
namespace Driver\SQL\Condition;
|
2021-01-13 01:36:04 +01:00
|
|
|
|
|
|
|
class CondNull extends Condition {
|
|
|
|
|
|
|
|
private string $column;
|
|
|
|
|
|
|
|
public function __construct(string $col) {
|
|
|
|
$this->column = $col;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getColumn() { return $this->column; }
|
|
|
|
}
|