Browse Source

added @codeCoverageIgnore to email related functions in Libraries/Aauth

v3-dev
REJack 6 years ago
parent
commit
4015a7baf3
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 8
      app/Libraries/Aauth.php

8
app/Libraries/Aauth.php

@ -954,6 +954,8 @@ class Aauth
* @param string $email Email to send verification email to * @param string $email Email to send verification email to
* *
* @return boolean * @return boolean
*
* @codeCoverageIgnore
*/ */
// protected function sendVerification(int $userId, string $email) // protected function sendVerification(int $userId, string $email)
// { // {
@ -1096,6 +1098,8 @@ class Aauth
* Return users as an object array * Return users as an object array
* *
* @return array Array of active users * @return array Array of active users
*
* @codeCoverageIgnore
*/ */
public function listActiveUsers() public function listActiveUsers()
{ {
@ -1226,6 +1230,8 @@ class Aauth
* @param string $email Email for account to remind * @param string $email Email for account to remind
* *
* @return boolean Remind fails/succeeds * @return boolean Remind fails/succeeds
*
* @codeCoverageIgnore
*/ */
public function remindPassword(string $email) public function remindPassword(string $email)
{ {
@ -1272,6 +1278,8 @@ class Aauth
* @param string $resetCode Verification code for account * @param string $resetCode Verification code for account
* *
* @return boolean Password reset fails/succeeds * @return boolean Password reset fails/succeeds
*
* @codeCoverageIgnore
*/ */
public function resetPassword(string $resetCode) public function resetPassword(string $resetCode)
{ {

Loading…
Cancel
Save