1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 11:36:08 +02:00

Generated PHPDoc for all classes in e107_handlers where one was missing. toNumber() updated to always return int or float.

This commit is contained in:
Cameron
2022-04-04 10:54:24 -07:00
parent 813f2bf38f
commit 55980a29a8
104 changed files with 5498 additions and 1221 deletions

View File

@@ -37,6 +37,10 @@ class e_signup
}
/**
* @param $query
* @return void|null
*/
public function run($query='')
{
$ns = e107::getRender();
@@ -116,6 +120,9 @@ class e_signup
}
*/
/**
* @return bool|int|string
*/
private function resendEmail()
{
global $userMethods;
@@ -235,8 +242,9 @@ class e_signup
}
/**
* @return void
*/
private function renderResendForm()
{
$ns = e107::getRender();
@@ -282,8 +290,9 @@ class e_signup
}
/**
* @return void
*/
private function sendEmailPreview()
{
$temp = array();
@@ -302,6 +311,9 @@ class e_signup
}
/**
* @return void
*/
function renderEmailPreview()
{
$ns = e107::getRender();
@@ -314,6 +326,9 @@ class e_signup
}
/**
* @return void
*/
private function renderAfterSignupPreview()
{
global $allData;
@@ -460,7 +475,10 @@ class e_signup
}
/**
* @param $error_message
* @return array
*/
static function renderAfterSignup($error_message='')
{