15 lines
216 B
PHP
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; }
|
|
|
|
} |