Skip to content

Commit

Permalink
Bugfix: Fixed incorrect namespaces for import statements (introduced …
Browse files Browse the repository at this point in the history
…in PR #23)
  • Loading branch information
rhertogh committed Jun 18, 2024
1 parent 032592a commit fb60c64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/controllers/console/Oauth2ClientController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace rhertogh\Yii2Oauth2Server\controllers\console;

use rhertogh\Yii2Oauth2Server\controllers\console\base\Oauth2BaseConsoleController;
use rhertogh\Yii2Oauth2Server\controllers\console\client\Oauth2CreateClientActionInterface;
use rhertogh\Yii2Oauth2Server\controllers\console\client\Oauth2DeleteClientActionInterface;
use rhertogh\Yii2Oauth2Server\controllers\console\client\Oauth2ListClientsActionInterface;
use rhertogh\Yii2Oauth2Server\controllers\console\client\Oauth2SetClientSecretActionInterface;
use rhertogh\Yii2Oauth2Server\controllers\console\client\Oauth2UpdateClientAction;
use rhertogh\Yii2Oauth2Server\controllers\console\client\Oauth2ViewClientAction;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\client\Oauth2CreateClientActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\client\Oauth2DeleteClientActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\client\Oauth2ListClientsActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\client\Oauth2SetClientSecretActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\Oauth2ClientControllerInterface;
use yii\helpers\ArrayHelper;

Expand Down
2 changes: 1 addition & 1 deletion src/controllers/console/Oauth2DebugController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace rhertogh\Yii2Oauth2Server\controllers\console;

use rhertogh\Yii2Oauth2Server\controllers\console\base\Oauth2BaseConsoleController;
use rhertogh\Yii2Oauth2Server\controllers\console\debug\Oauth2DebugConfigActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\debug\Oauth2DebugConfigActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\Oauth2DebugControllerInterface;

class Oauth2DebugController extends Oauth2BaseConsoleController implements Oauth2DebugControllerInterface
Expand Down
4 changes: 2 additions & 2 deletions src/controllers/console/Oauth2EncryptionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace rhertogh\Yii2Oauth2Server\controllers\console;

use rhertogh\Yii2Oauth2Server\controllers\console\base\Oauth2BaseConsoleController;
use rhertogh\Yii2Oauth2Server\controllers\console\encryption\Oauth2EncryptionKeyUsageActionInterface;
use rhertogh\Yii2Oauth2Server\controllers\console\encryption\Oauth2GenerateSecretActionInterface;
use rhertogh\Yii2Oauth2Server\controllers\console\encryption\Oauth2RotateEncryptionKeysAction;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\encryption\Oauth2EncryptionKeyUsageActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\encryption\Oauth2GenerateSecretActionInterface;
use rhertogh\Yii2Oauth2Server\interfaces\controllers\console\Oauth2EncryptionControllerInterface;
use yii\helpers\ArrayHelper;

Expand Down

0 comments on commit fb60c64

Please sign in to comment.