web-base/core/Driver/SQL/Keyword.class.php

15 lines
201 B
PHP

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