20 lines
308 B
PHP
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,
|
|
], "=");
|
|
}
|
|
}
|