for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Keep;
trait Keyword
{
private $keyword = '';
public function orderBy(array $columns, $order): self
$this->keyword = 'ORDER BY `' . Tool::columns($columns) . "` {$order}";
return $this;
}