File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Expand file tree Collapse file tree 4 files changed +3
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11CakePHP Enqueue Plugin
22=======================
33
4- [ ![ Build Status] ( https://img.shields.io/github/workflow/status/cakedc/cakephp-enqueue/CI/master?style=flat-square )] ( https://github.com/cakedc/cakephp-enqueue/actions?query=workflow%3ACI+branch%3Amaster )
54[ ![ Downloads] ( https://poser.pugx.org/cakedc/cakephp-enqueue/d/total.png )] ( https://packagist.org/packages/cakedc/cakephp-enqueue )
65[ ![ Latest Version] ( https://poser.pugx.org/cakedc/cakephp-enqueue/v/stable.png )] ( https://packagist.org/packages/cakedc/cakephp-enqueue )
76[ ![ License] ( https://poser.pugx.org/cakedc/cakephp-enqueue/license.svg )] ( https://packagist.org/packages/cakedc/cakephp-enqueue )
Original file line number Diff line number Diff line change 2828/**
2929 * Plugin for CakephpEnqueue
3030 */
31- class Plugin extends BasePlugin
31+ class EnqueuePlugin extends BasePlugin
3232{
3333 /**
3434 * Load all the plugin configuration and bootstrap logic.
Original file line number Diff line number Diff line change 1717namespace Cake \Queue \Test \TestCase \Mailer ;
1818
1919use Cake \Datasource \ConnectionManager ;
20- use Cake \Enqueue \Plugin ;
20+ use Cake \Enqueue \EnqueuePlugin ;
2121use Cake \Mailer \Exception \MissingActionException ;
2222use Cake \ORM \TableRegistry ;
2323use Cake \Queue \QueueManager ;
@@ -49,7 +49,7 @@ public function testQueueTraitTestThrowsMissingActionException()
4949 public function testQueueTraitCallsPush ()
5050 {
5151 $ application = new Application (CONFIG );
52- $ plugin = new Plugin ();
52+ $ plugin = new EnqueuePlugin ();
5353 $ plugin ->bootstrap ($ application );
5454
5555 $ queue = new WelcomeMailer ();
You can’t perform that action at this time.
0 commit comments