Skip to content

Commit c175c0f

Browse files
committed
PSR-4 namespacing
1 parent e38f41d commit c175c0f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

lib/Auth/Process/ftickslogger.php

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,17 @@
33
* F-TICKS logger Authentication Processing filter
44
*
55
* @author Tamas Frank <sitya@niif.hu>
6+
* @author Gyula Szabó <gyufi@sztaki.hu>
67
* @package simpleSAMLphp
78
* @version $Id$
89
*/
9-
class sspmod_ftickslogger_Auth_Process_ftickslogger extends SimpleSAML_Auth_ProcessingFilter
10+
namespace SimpleSAML\Module\attributeaggregator\Auth\Process;
11+
12+
use SimpleSAML\Auth\ProcessingFilter;
13+
use SimpleSAML\Error\Exception;
14+
use SimpleSAML\Logger;
15+
16+
class ftickslogger extends ProcessingFilter
1017
{
1118

1219
/**
@@ -71,7 +78,7 @@ public function process(&$state) {
7178
$RP = $state['Destination']['entityid'];
7279
}
7380

74-
SimpleSAML_Logger::stats($this->typeTag . '#TS=' . $TS . '#AP=' . $AP . '#RP=' . $RP . '#PN=' . $PN . '#AM=' . $AM . '#');
81+
Logger::stats($this->typeTag . '#TS=' . $TS . '#AP=' . $AP . '#RP=' . $RP . '#PN=' . $PN . '#AM=' . $AM . '#');
7582
}
7683

7784
}

0 commit comments

Comments
 (0)