Skip to content

Commit d8183b5

Browse files
committed
Merge branch 'master' into 2.x
2 parents c7c1ab8 + 3058f18 commit d8183b5

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed
File renamed without changes.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
CakePHP 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)

src/Plugin.php renamed to src/EnqueuePlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
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.

tests/TestCase/Mailer/QueueTraitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Cake\Queue\Test\TestCase\Mailer;
1818

1919
use Cake\Datasource\ConnectionManager;
20-
use Cake\Enqueue\Plugin;
20+
use Cake\Enqueue\EnqueuePlugin;
2121
use Cake\Mailer\Exception\MissingActionException;
2222
use Cake\ORM\TableRegistry;
2323
use 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();

0 commit comments

Comments
 (0)