Merge pull request #414 from jugendpresse/devel

* [FIX] Missing interface implementation. PHP 7 is more strict than PHP 5. Thanks to @macwinnie for the bugfix
This commit is contained in:
RubénD
2017-02-10 08:10:09 +01:00
committed by GitHub

View File

@@ -212,4 +212,26 @@ class UserPassRecover extends UserPassRecoverBase implements ItemInterface
{
// TODO: Implement checkDuplicatedOnAdd() method.
}
/**
* Eliminar elementos en lote
*
* @param array $ids
* @return $this
*/
public function deleteBatch(array $ids)
{
// TODO: Implement deleteBatch() method.
}
/**
* Devolver los elementos con los ids especificados
*
* @param array $ids
* @return mixed
*/
public function getByIdBatch(array $ids)
{
// TODO: Implement getByIdBatch() method.
}
}