ZipStream
This commit is contained in:
16
core/Driver/SQL/Condition/CondNull.class.php
Normal file
16
core/Driver/SQL/Condition/CondNull.class.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Driver\Sql\Condition;
|
||||
|
||||
|
||||
class CondNull extends Condition {
|
||||
|
||||
private string $column;
|
||||
|
||||
public function __construct(string $col) {
|
||||
$this->column = $col;
|
||||
}
|
||||
|
||||
public function getColumn() { return $this->column; }
|
||||
}
|
||||
Reference in New Issue
Block a user