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:
Martin Winter
2017-02-10 00:41:24 +01:00
parent ebe15c40ec
commit f7b14a2805

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.
}
}