ulmus/src/Query/Delete.php
2019-12-19 09:54:33 -05:00

28 lines
563 B
PHP

<?php
namespace Ulmus\Query;
class Delete extends Fragment {
public int $order = -100;
public bool $lowPriority = false;
public bool $quick = false;
public bool $ignore = false;
public string $alias;
public function render() : string
{
return $this->renderSegments([
'DELETE',
( $this->alias ?? false ),
( $this->lowPriority ? 'LOW_PRIORITY' : false ),
( $this->quick ? 'QUICK' : false ),
( $this->ignore ? 'IGNORE' : false ),
]);
}
}