for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Graze\DataDb;
class SourceTableNode extends TableNode implements SourceTableNodeInterface
{
/** @var string */
protected $where;
/**
* @param string $where
*
* @return static
*/
public function setWhere($where)
$this->where = $where;
return $this;
}
* @return string
public function getWhere()
return $this->where;