Skip to content

Commit e158a1a

Browse files
author
Mark Scherer
committed
cs
1 parent 5f241bd commit e158a1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/routes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Router::prefix('admin', function ($routes) {
55
$routes->plugin('Queue', function ($routes) {
66
$routes->connect('/', ['controller' => 'Queue', 'action' => 'index'], ['routeClass' => 'DashedRoute']);
7-
7+
88
$routes->connect('/:controller', ['action' => 'index'], ['routeClass' => 'DashedRoute']);
99
$routes->connect('/:controller/:action/*', [], ['routeClass' => 'DashedRoute']);
1010
});

src/Controller/Admin/QueueController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Queue\Controller\Admin;
44

5+
use App\Controller\AppController;
56
use Cake\Core\Configure;
67
use Cake\Event\Event;
7-
use App\Controller\AppController;
88

99
class QueueController extends AppController {
1010

0 commit comments

Comments
 (0)