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

15 lines
216 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
2021-04-02 21:58:06 +02:00
public function __construct(string $value) {
2020-04-02 00:02:51 +02:00
$this->value = $value;
}
2021-04-02 21:58:06 +02:00
public function getValue(): string { return $this->value; }
2020-04-02 00:02:51 +02:00
2020-04-03 17:39:58 +02:00
}