mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-04 07:34:09 +01:00
Add skeleton of not implemented abstract functions
so PHP 7 recognises the SP\Mgmt\Users\UserPassRecover as non-abstract without inheriting SP\Mgmt\ItemInterface
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