18 lines
293 B
PHP
18 lines
293 B
PHP
<?php
|
|
|
|
namespace Ulmus\Query;
|
|
|
|
class Explain extends Fragment {
|
|
|
|
public int $order = -1500;
|
|
|
|
public bool $extended = false;
|
|
|
|
public function render() : string
|
|
{
|
|
return $this->renderSegments([
|
|
"EXPLAIN", $this->extended ? "EXTENDED" : ""
|
|
]);
|
|
}
|
|
}
|