ulmus/src/Query/Engine.php
2020-10-16 15:27:54 +00:00

20 lines
308 B
PHP

<?php
namespace Ulmus\Query;
class Engine extends Fragment {
const SQL_TOKEN = "ENGINE";
public int $order = 80;
public string $engine;
public function render() : string
{
return $this->renderSegments([
static::SQL_TOKEN, $this->engine,
], "=");
}
}