for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Janisbiz\LightOrm\Dms\MySQL\QueryBuilder\Traits;
trait CommandTrait
{
/**
* @var string
*/
protected $command;
* @param string $command
*
* @return $this
public function command(string $command)
$this->command = $command;
return $this;
}
* @return string
public function commandData(): string
return $this->command;
protected function buildCommandQueryPart(): string