コード例 #1
0
ファイル: EntityFinder.php プロジェクト: janmarek/Neuron
 /**
  * @param int id
  * @return EntityFinder
  */
 public function whereId($id)
 {
     $this->qb->andWhere("{$this->alias}.id = :id");
     $this->qb->setParameter("id", $id);
     return $this;
 }