Skip to content

Commit

Permalink
Moved Exception classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Rodrigues committed Feb 21, 2015
1 parent 62a862a commit cdc1edb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 5 additions & 2 deletions includes/WPCASServer.php
Expand Up @@ -11,8 +11,11 @@
}

require_once dirname( __FILE__ ) . '/ICASServer.php';
require_once dirname( __FILE__ ) . '/WPCASException.php';
require_once dirname( __FILE__ ) . '/WPCASRequestException.php';

require_once dirname( __FILE__ ) . '/Exception/WPCASException.php';
require_once dirname( __FILE__ ) . '/Exception/WPCASRequestException.php';
require_once dirname( __FILE__ ) . '/Exception/WPCASTicketException.php';

require_once dirname( __FILE__ ) . '/WPCASTicket.php';

require_once dirname( __FILE__ ) . '/Controller/WPCASController.php';
Expand Down
2 changes: 0 additions & 2 deletions includes/WPCASTicket.php
Expand Up @@ -11,8 +11,6 @@
die;
}

require_once dirname( __FILE__ ) . '/WPCASTicketException.php';

if ( ! class_exists( 'WPCASTicket' ) ) {

/**
Expand Down

0 comments on commit cdc1edb

Please sign in to comment.