Explorar el Código

Refactoring services

develop
Guillaume hace 3 años
padre
commit
0b0f5695f2
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      Repository/AbstractRepositoryQuery.php

+ 5
- 0
Repository/AbstractRepositoryQuery.php Ver fichero

@@ -128,6 +128,11 @@ abstract class AbstractRepositoryQuery implements RepositoryQueryInterface
->setParameter('id', $id);
}

public function andWhereEqual($field, $value)
{
return $this->andWhere('.'.$field.' = :'.$field)->setParameter($field, $value);
}

/*
* DEVALIAS
*/

Cargando…
Cancelar
Guardar