mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-04 23:54:08 +01:00
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:
@@ -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.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user