for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* components
*
* @author Wolfy-J
*/
namespace Spiral\ORM\Commands\Traits;
trait WhereTrait
{
* Where conditions (short where format).
* @var array
private $where = [];
* @param array $where
public function setWhere(array $where)
$this->where = $where;
}
* @return array
public function getWhere(): array
return $this->where;