/**
  * @return null
  */
 public function setupQueryBuilder()
 {
     $this->objectGetter->setSelectQueryFields($this->getInput('fields', 1));
     $this->objectGetter->setMainQuery();
     $this->objectGetter->setId($this->getInput('id', 1));
     $this->objectGetter->setOrderBy($this->getInput('orderBy', 1));
     $this->objectGetter->setGroupBy($this->getInput('groupBy', 1));
     $this->objectGetter->setLimit($this->getInput('limit', 1));
     return null;
 }
Exemplo n.º 2
0
 public function testSetExcludeId()
 {
     $this->objectGetter->setExcludeId(1);
     $this->assertNotEmpty($this->objectGetter->getQueryBuilder()->getParameter('excludeId'));
 }