Skip to content

Commit b02a4a4

Browse files
committed
Fix issue introduced by automatic refactoring
1 parent afe9177 commit b02a4a4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Authorizer/Authorizer.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88

99
namespace ActiveCollab\Authentication\Authorizer;
1010

11-
use ActiveCollab\Authentication\Authorizer\ExceptionAware\DelegatesToHandler\DelegatesToHandler as DelegatesToExceptionHandler;
11+
use ActiveCollab\Authentication\Authorizer\ExceptionAware\DelegatesToHandler\DelegatesToHandler as DelegatesToExceptionHandlerImplementation;
1212
use ActiveCollab\Authentication\Authorizer\ExceptionAware\DelegatesToHandler\DelegatesToHandlerInterface;
13-
use ActiveCollab\Authentication\Authorizer\ExceptionAware\ExceptionAware;
14-
use ActiveCollab\Authentication\Authorizer\ExceptionAware\ExceptionHandler\ExceptionHandlerInterface;
13+
use ActiveCollab\Authentication\Authorizer\ExceptionAware\ExceptionAware as ExceptionAwareImplementation;
14+
use ActiveCollab\Authentication\Authorizer\ExceptionAware\ExceptionAwareInterface;
1515

1616
/**
1717
* @package ActiveCollab\Authentication\Authorizer
1818
*/
1919
abstract class Authorizer implements
2020
AuthorizerInterface,
2121
DelegatesToHandlerInterface,
22-
ExceptionHandlerInterface
22+
ExceptionAwareInterface
2323
{
24-
use DelegatesToExceptionHandler, ExceptionAware;
24+
use DelegatesToExceptionHandlerImplementation, ExceptionAwareImplementation;
2525
}

src/Authorizer/ExceptionAware/ExceptionAwareInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* @package ActiveCollab\Authentication\Authorizer\ExceptionAware
1616
*/
17-
interface ExceptionHandlerInterface
17+
interface ExceptionAwareInterface
1818
{
1919
/**
2020
* @param array $credentials

0 commit comments

Comments
 (0)