Rename helper function

This commit is contained in:
Frederic Guillot 2015-04-10 20:58:59 -04:00
parent fa1ddb486a
commit fb800d739d

View File

@ -2,7 +2,7 @@
namespace Helper; namespace Helper;
function isSecureConnection() function is_secure_connection()
{ {
return ! empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off'; return ! empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off';
} }