Skip to content

Commit

Permalink
Fix codesniffer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Feb 14, 2024
1 parent eed93fe commit 0b1e2d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<!-- Ignore files with side effects that we cannot fix -->
<rule ref="PSR1.Files.SideEffects">
<exclude-pattern>tests/bootstrap.php</exclude-pattern>
<exclude-pattern>tests/public/UtilsTest.php</exclude-pattern>
<exclude-pattern>tests/www/UtilsTest.php</exclude-pattern>
</rule>

Expand Down
2 changes: 1 addition & 1 deletion public/utility/validateTicket.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
declare(strict_types=1);

use Exception;
use SimpleSAML\CAS\Constants as C;
use SimpleSAML\Configuration;
use SimpleSAML\Logger;
use SimpleSAML\Module;
use SimpleSAML\Utils;
use SimpleSAML\CAS\Constants as C;

require_once('urlUtils.php');

Expand Down
2 changes: 1 addition & 1 deletion src/Cas/TicketValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
namespace SimpleSAML\Module\casserver\Cas;

use InvalidArgumentException;
use SimpleSAML\CAS\Constants as C;
use SimpleSAML\Configuration;
use SimpleSAML\Logger;
use SimpleSAML\Module;
use SimpleSAML\Module\casserver\Cas\CasException;
use SimpleSAML\Module\casserver\Cas\Ticket\TicketFactory;
use SimpleSAML\Module\casserver\Cas\Ticket\TicketStore;
use SimpleSAML\CAS\Constants as C;

class TicketValidator
{
Expand Down

0 comments on commit 0b1e2d2

Please sign in to comment.