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

15 lines
201 B
PHP
Raw Normal View History

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