Completed
Push — master ( 6ccb07...ec0305 )
by Terrence
19:28 queued 04:26
created
src/Service/Content.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace CILogon\Service;
4 4
 
5
-use CILogon\Service\Util;
6
-use CILogon\Service\TwoFactor;
7
-use CILogon\Service\MyProxy;
8
-use CILogon\Service\PortalCookie;
9 5
 use CILogon\Service\DBService;
10
-use CILogon\Service\OAuth2Provider;
11 6
 use CILogon\Service\Loggit;
7
+use CILogon\Service\MyProxy;
8
+use CILogon\Service\OAuth2Provider;
9
+use CILogon\Service\PortalCookie;
10
+use CILogon\Service\TwoFactor;
11
+use CILogon\Service\Util;
12 12
 use Net_LDAP2_Util;
13 13
 
14 14
 // If needed, set the 'Notification' banner text to a non-empty value
Please login to merge, or discard this patch.
src/Service/DBProps.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace CILogon\Service;
4 4
 
5 5
 use CILogon\Service\Util;
6
-use PEAR;
7 6
 use DB;
7
+use PEAR;
8 8
 
9 9
 /**
10 10
  * DBProps
Please login to merge, or discard this patch.
src/Service/IdpList.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use CILogon\Service\Util;
6 6
 use DOMDocument;
7 7
 use DOMImplementation;
8
-use XSLTProcessor;
9 8
 use SimpleXMLElement;
9
+use XSLTProcessor;
10 10
 
11 11
 /**
12 12
  * IdpList
Please login to merge, or discard this patch.
src/Service/ShibError.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace CILogon\Service;
4 4
 
5
-use CILogon\Service\Util;
6 5
 use CILogon\Service\Content;
7 6
 use CILogon\Service\Loggit;
7
+use CILogon\Service\Util;
8 8
 
9 9
 /**
10 10
  * ShibError
Please login to merge, or discard this patch.
src/Service/TwoFactor.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace CILogon\Service;
4 4
 
5
-use CILogon\Service\Util;
6 5
 use CILogon\Service\Content;
7 6
 use CILogon\Service\DuoConfig;
7
+use CILogon\Service\Util;
8 8
 use Duo\Web;
9 9
 use Endroid\QrCode\QrCode;
10 10
 use PHPGangsta_GoogleAuthenticator;
Please login to merge, or discard this patch.
src/Service/Util.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,15 +3,15 @@
 block discarded – undo
3 3
 namespace CILogon\Service;
4 4
 
5 5
 use CILogon\Service\CSRF;
6
-use CILogon\Service\Loggit;
7
-use CILogon\Service\IdpList;
8 6
 use CILogon\Service\DBService;
7
+use CILogon\Service\IdpList;
8
+use CILogon\Service\Loggit;
9
+use CILogon\Service\PortalCookie;
9 10
 use CILogon\Service\SessionMgr;
10 11
 use CILogon\Service\Skin;
11 12
 use CILogon\Service\TimeIt;
12
-use CILogon\Service\PortalCookie;
13
-use PEAR;
14 13
 use Config;
14
+use PEAR;
15 15
 
16 16
 // Full path to the php.ini-style config file for the CILogon Service
17 17
 define('CILOGON_INI_FILE', '/var/www/config/cilogon.ini');
Please login to merge, or discard this patch.