From f7b14a28052fcb4cc5bfc7f5ce5961dbb2dbf0f2 Mon Sep 17 00:00:00 2001 From: Martin Winter Date: Fri, 10 Feb 2017 00:41:24 +0100 Subject: [PATCH] Add skeleton of not implemented abstract functions so PHP 7 recognises the SP\Mgmt\Users\UserPassRecover as non-abstract without inheriting SP\Mgmt\ItemInterface --- inc/SP/Mgmt/Users/UserPassRecover.class.php | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/inc/SP/Mgmt/Users/UserPassRecover.class.php b/inc/SP/Mgmt/Users/UserPassRecover.class.php index a20e1496..539b1bb1 100644 --- a/inc/SP/Mgmt/Users/UserPassRecover.class.php +++ b/inc/SP/Mgmt/Users/UserPassRecover.class.php @@ -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. + } } \ No newline at end of file