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;
|
|
|
|
}
|
|
|
|
|
2021-04-02 21:58:06 +02:00
|
|
|
public function getColumn(): string { return $this->column; }
|
2021-01-13 01:36:04 +01:00
|
|
|
}
|