We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35ef866 commit 11e4b60Copy full SHA for 11e4b60
src/libraries/BlizzardChecker.php
@@ -2,13 +2,13 @@
2
3
namespace BNETDocs\Libraries;
4
5
-use \CarlBennett\MVC\Libraries\Common;
6
-use \CarlBennett\MVC\Libraries\IP;
7
-
8
use \BNETDocs\Libraries\Authentication;
9
use \BNETDocs\Libraries\EventTypes;
10
use \BNETDocs\Libraries\Logger;
11
+use \CarlBennett\MVC\Libraries\Common;
+use \CarlBennett\MVC\Libraries\IP;
+
12
class BlizzardChecker {
13
14
/**
@@ -27,7 +27,7 @@ public static function checkIfBlizzard() {
27
28
public static function logIfBlizzard() {
29
$user_id = (isset(Authentication::$user) ? Authentication::$user : null);
30
- if (BlizzardChecker::checkIfBlizzard()) {
+ if (self::checkIfBlizzard()) {
31
Logger::logEvent(
32
EventTypes::BLIZZARD_VISIT,
33
$user_id,
0 commit comments