web-base/core/Driver/SQL/Keyword.class.php
2021-04-02 22:24:22 +02:00

15 lines
216 B
PHP

<?php
namespace Driver\SQL;
class Keyword {
private string $value;
public function __construct(string $value) {
$this->value = $value;
}
public function getValue(): string { return $this->value; }
}