diff options
author | Mario <mario@mariovavti.com> | 2021-01-15 19:31:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-15 19:31:50 +0000 |
commit | 28ef42a424db57bdb6e276f118d38fddd170ca54 (patch) | |
tree | e9fe520487e5f319dde04da256aed4a37fb594d9 | |
parent | 70233ea90340a12e0295d4d4bb30a128a0f50152 (diff) | |
download | volse-hubzilla-28ef42a424db57bdb6e276f118d38fddd170ca54.tar.gz volse-hubzilla-28ef42a424db57bdb6e276f118d38fddd170ca54.tar.bz2 volse-hubzilla-28ef42a424db57bdb6e276f118d38fddd170ca54.zip |
make functions public static
-rw-r--r-- | Zotlabs/Lib/Verify.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Lib/Verify.php b/Zotlabs/Lib/Verify.php index 8703e29e6..f8dc8f8d4 100644 --- a/Zotlabs/Lib/Verify.php +++ b/Zotlabs/Lib/Verify.php @@ -5,7 +5,7 @@ namespace Zotlabs\Lib; class Verify { - function create($type,$channel_id,$token,$meta) { + public static function create($type,$channel_id,$token,$meta) { return q("insert into verify ( vtype, channel, token, meta, created ) values ( '%s', %d, '%s', '%s', '%s' )", dbesc($type), intval($channel_id), @@ -15,7 +15,7 @@ class Verify { ); } - function match($type,$channel_id,$token,$meta) { + public static function match($type,$channel_id,$token,$meta) { $r = q("select id from verify where vtype = '%s' and channel = %d and token = '%s' and meta = '%s' limit 1", dbesc($type), intval($channel_id), @@ -31,7 +31,7 @@ class Verify { return false; } - function get_meta($type,$channel_id,$token) { + public static function get_meta($type,$channel_id,$token) { $r = q("select id, meta from verify where vtype = '%s' and channel = %d and token = '%s' limit 1", dbesc($type), intval($channel_id), @@ -52,7 +52,7 @@ class Verify { * @param string $type Verify type * @param string $interval SQL compatible time interval */ - function purge($type, $interval) { + public static function purge($type, $interval) { q("delete from verify where vtype = '%s' and created < %s - INTERVAL %s", dbesc($type), db_utcnow(), |