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

18 lines
199 B
PHP
Raw Normal View History

2020-04-02 00:02:51 +02:00
<?php
namespace Driver\SQL;
class Keyword {
private $value;
public function __construct($value) {
$this->value = $value;
}
public function getValue() { return $this->value; }
}
?>