Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monorepo v6 refactoring: EasyEventDispatcher #1428

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@
"EonX\\EasyEncryption\\": "packages/EasyEncryption/src",
"EonX\\EasyErrorHandler\\": "packages/EasyErrorHandler/src",
"EonX\\EasyEventDispatcher\\": "packages/EasyEventDispatcher/src",
"EonX\\EasyEventDispatcher\\Bundle\\": "packages/EasyEventDispatcher/bundle",
"EonX\\EasyEventDispatcher\\Laravel\\": "packages/EasyEventDispatcher/laravel",
"EonX\\EasyHttpClient\\": "packages/EasyHttpClient/src",
"EonX\\EasyLock\\": "packages/EasyLock/src",
"EonX\\EasyLogging\\": "packages/EasyLogging/src",
Expand Down Expand Up @@ -154,6 +156,8 @@
"EonX\\EasyErrorHandler\\Tests\\": "packages/EasyErrorHandler/tests",
"EonX\\EasyErrorHandler\\Tests\\Bridge\\Symfony\\Fixtures\\App\\": "packages/EasyErrorHandler/tests/Bridge/Symfony/Fixtures/app/src",
"EonX\\EasyEventDispatcher\\Tests\\": "packages/EasyEventDispatcher/tests",
"EonX\\EasyEventDispatcher\\Tests\\Unit\\Bundle\\": "packages/EasyEventDispatcher/tests/Unit/bundle",
"EonX\\EasyEventDispatcher\\Tests\\Unit\\Laravel\\": "packages/EasyEventDispatcher/tests/Unit/laravel",
"EonX\\EasyHttpClient\\Tests\\": "packages/EasyHttpClient/tests",
"EonX\\EasyHttpClient\\Tests\\Bridge\\Symfony\\Fixtures\\App\\": "packages/EasyHttpClient/tests/Bridge/Symfony/Fixtures/app/src",
"EonX\\EasyLock\\Tests\\": "packages/EasyLock/tests",
Expand Down
4 changes: 2 additions & 2 deletions packages/EasyActivity/tests/Fixture/app/config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
use EonX\EasyActivity\Bundle\EasyActivityBundle;
use EonX\EasyDoctrine\Bridge\Symfony\EasyDoctrineSymfonyBundle;
use EonX\EasyEventDispatcher\Bridge\Symfony\EasyEventDispatcherSymfonyBundle;
use EonX\EasyEventDispatcher\Bundle\EasyEventDispatcherBundle;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;

return [
EasyActivityBundle::class => [
'all' => true,
],
EasyEventDispatcherSymfonyBundle::class => [
EasyEventDispatcherBundle::class => [
'all' => true,
],
EasyDoctrineSymfonyBundle::class => [
Expand Down
2 changes: 1 addition & 1 deletion packages/EasyAsync/tests/Stub/EventDispatcherStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace EonX\EasyAsync\Tests\Stub;

use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

final class EventDispatcherStub implements EventDispatcherInterface
{
Expand Down
2 changes: 1 addition & 1 deletion packages/EasyAsync/tests/Stub/KernelStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Doctrine\DBAL\Connection;
use Doctrine\Persistence\ManagerRegistry;
use EonX\EasyAsync\Bundle\EasyAsyncBundle;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use EonX\EasyRandom\Bridge\Symfony\EasyRandomSymfonyBundle;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
Expand Down
2 changes: 1 addition & 1 deletion packages/EasyBatch/src/BatchObjectManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use EonX\EasyBatch\Iterator\IteratorConfig;
use EonX\EasyBatch\Persisters\BatchPersister;
use EonX\EasyBatch\Processors\BatchProcessor;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

final class BatchObjectManager implements BatchObjectManagerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
use EonX\EasyBatch\Serializers\MessageSerializer;
use EonX\EasyBatch\Transformers\BatchItemTransformer;
use EonX\EasyBatch\Transformers\BatchTransformer;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use EonX\EasyBatch\Events\AbstractBatchObjectEvent;
use EonX\EasyBatch\Interfaces\BatchObjectInterface;
use EonX\EasyBatch\Interfaces\BatchObjectTransformerInterface;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

abstract class AbstractBatchObjectFactory
{
Expand Down
2 changes: 1 addition & 1 deletion packages/EasyBatch/src/Processors/BatchProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use EonX\EasyBatch\Interfaces\BatchObjectInterface;
use EonX\EasyBatch\Interfaces\BatchObjectManagerInterface;
use EonX\EasyBatch\Interfaces\BatchRepositoryInterface;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

final class BatchProcessor
{
Expand Down
4 changes: 2 additions & 2 deletions packages/EasyBatch/tests/Bridge/Symfony/Stubs/KernelStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Doctrine\DBAL\Connection;
use EonX\EasyBatch\Bridge\Symfony\EasyBatchSymfonyBundle;
use EonX\EasyEncryption\Bridge\Symfony\EasyEncryptionSymfonyBundle;
use EonX\EasyEventDispatcher\Bridge\Symfony\EasyEventDispatcherSymfonyBundle;
use EonX\EasyEventDispatcher\Bundle\EasyEventDispatcherBundle;
use EonX\EasyLock\Interfaces\LockServiceInterface;
use EonX\EasyRandom\Bridge\Symfony\EasyRandomSymfonyBundle;
use Psr\Container\ContainerInterface;
Expand Down Expand Up @@ -49,7 +49,7 @@ public function registerBundles(): iterable
{
yield new EasyBatchSymfonyBundle();
yield new EasyEncryptionSymfonyBundle();
yield new EasyEventDispatcherSymfonyBundle();
yield new EasyEventDispatcherBundle();
yield new EasyRandomSymfonyBundle();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use EonX\EasyDoctrine\Events\EntityDeletedEvent;
use EonX\EasyDoctrine\Events\EntityUpdatedEvent;
use EonX\EasyDoctrine\Interfaces\ObjectCopierInterface;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use LogicException;

final class DeferredEntityEventDispatcher implements DeferredEntityEventDispatcherInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Doctrine\ORM\Exception\ORMException;
use EonX\EasyDoctrine\Dispatchers\DeferredEntityEventDispatcherInterface;
use EonX\EasyDoctrine\Events\TransactionalExceptionEvent;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use Throwable;

final class EntityManagerDecorator extends DoctrineEntityManagerDecorator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use EonX\EasyDoctrine\Events\TransactionalExceptionEvent;
use EonX\EasyDoctrine\ORM\Decorators\EntityManagerDecorator;
use EonX\EasyDoctrine\Tests\AbstractTestCase;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use Exception;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
Expand Down Expand Up @@ -61,7 +61,7 @@ public function testCommitSucceedsWithTransactionNestingLevel(): void
/** @var \EonX\EasyDoctrine\Dispatchers\DeferredEntityEventDispatcherInterface $entityEventDispatcherReveal */
$entityEventDispatcherReveal = $deferredEntityEventDispatcher->reveal();
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$entityEventDispatcherReveal,
Expand Down Expand Up @@ -96,7 +96,7 @@ public function testCommitSucceedsWithoutTransactionNestingLevel(): void
/** @var \EonX\EasyDoctrine\Dispatchers\DeferredEntityEventDispatcherInterface $deferredDispatcherReveal */
$deferredDispatcherReveal = $deferredEntityEventDispatcher->reveal();
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$deferredDispatcherReveal,
Expand Down Expand Up @@ -131,7 +131,7 @@ public function testRollbackSucceedsWithTransactionNestingLevel(): void
/** @var \EonX\EasyDoctrine\Dispatchers\DeferredEntityEventDispatcherInterface $deferredDispatcherReveal */
$deferredDispatcherReveal = $deferredEntityEventDispatcher->reveal();
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$deferredDispatcherReveal,
Expand Down Expand Up @@ -166,7 +166,7 @@ public function testRollbackSucceedsWithoutTransactionNestingLevel(): void
/** @var \EonX\EasyDoctrine\Dispatchers\DeferredEntityEventDispatcherInterface $deferredDispatcherReveal */
$deferredDispatcherReveal = $deferredEntityEventDispatcher->reveal();
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$deferredDispatcherReveal,
Expand Down Expand Up @@ -212,7 +212,7 @@ public function testWrapInTransactionSucceeds(mixed $callableReturns, mixed $tra
/** @var \EonX\EasyDoctrine\Dispatchers\DeferredEntityEventDispatcherInterface $deferredDispatcherReveal */
$deferredDispatcherReveal = $deferredEntityEventDispatcher->reveal();
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$deferredDispatcherReveal,
Expand Down Expand Up @@ -264,7 +264,7 @@ public function testWrapInTransactionThrowsException(): void
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
$eventDispatcher->dispatch(Argument::type(TransactionalExceptionEvent::class))
->willReturnArgument();
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$deferredDispatcherReveal,
Expand Down Expand Up @@ -320,7 +320,7 @@ public function testWrapInTransactionThrowsExceptionAndClosesEntityManagerOnDoct
$eventDispatcher = $this->prophesize(EventDispatcherInterface::class);
$eventDispatcher->dispatch(Argument::type(TransactionalExceptionEvent::class))
->willReturnArgument();
/** @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface $eventDispatcherReveal */
/** @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface $eventDispatcherReveal */
$eventDispatcherReveal = $eventDispatcher->reveal();
$entityManagerDecorator = new EntityManagerDecorator(
$deferredDispatcherReveal,
Expand Down
4 changes: 2 additions & 2 deletions packages/EasyDoctrine/tests/Stubs/EntityManagerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
use EonX\EasyDoctrine\Listeners\EntityEventListener;
use EonX\EasyDoctrine\ORM\Decorators\EntityManagerDecorator;
use EonX\EasyDoctrine\Tests\Fixtures\PriceType;
use EonX\EasyEventDispatcher\Bridge\Symfony\EventDispatcher;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcher;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use Symfony\Component\EventDispatcher\EventDispatcher as SymfonyEventDispatcher;

final class EntityManagerStub
Expand Down
2 changes: 1 addition & 1 deletion packages/EasyDoctrine/tests/Stubs/EventDispatcherStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace EonX\EasyDoctrine\Tests\Stubs;

use Closure;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

final class EventDispatcherStub implements EventDispatcherInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
<?php
declare(strict_types=1);

namespace EonX\EasyEventDispatcher\Bridge\Symfony;
namespace EonX\EasyEventDispatcher\Bundle;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symfony\Component\HttpKernel\Bundle\AbstractBundle;

final class EasyEventDispatcherSymfonyBundle extends AbstractBundle
final class EasyEventDispatcherBundle extends AbstractBundle
{
protected string $extensionAlias = 'easy_event_dispatcher';

public function __construct()
{
$this->path = \realpath(__DIR__);
}

public function loadExtension(array $config, ContainerConfigurator $container, ContainerBuilder $builder): void
{
$container->import(__DIR__ . '/Resources/config/services.php');
$container->import('config/services.php');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

namespace Symfony\Component\DependencyInjection\Loader\Configurator;

use EonX\EasyEventDispatcher\Bridge\Symfony\EventDispatcher;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcher;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface as SymfonyEventDispatcherInterface;

return static function (ContainerConfigurator $container): void {
Expand Down
14 changes: 10 additions & 4 deletions packages/EasyEventDispatcher/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,28 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2"
"php": "^8.2",
"symfony/contracts": "^3.5",
"symfony/dependency-injection": "^6.4",
"symfony/http-kernel": "^6.4"
},
"require-dev": {
"laravel/lumen-framework": "^9.1",
"phpunit/phpunit": "^10.2",
"symfony/symfony": "^6.4"
"symfony/config": "^6.4"
},
"autoload": {
"psr-4": {
"EonX\\EasyEventDispatcher\\": "src",
"EonX\\EasyEventDispatcher\\Bridge\\Symfony\\": "src/Bridge/Symfony"
"EonX\\EasyEventDispatcher\\Bundle\\": "bundle",
"EonX\\EasyEventDispatcher\\Laravel\\": "laravel"
}
},
"autoload-dev": {
"psr-4": {
"EonX\\EasyEventDispatcher\\Tests\\": "tests"
"EonX\\EasyEventDispatcher\\Tests\\": "tests",
"EonX\\EasyEventDispatcher\\Tests\\Unit\\Bundle\\": "tests/Unit/bundle",
"EonX\\EasyEventDispatcher\\Tests\\Unit\\Laravel\\": "tests/Unit/laravel"
}
},
"extra": {
Expand Down
4 changes: 2 additions & 2 deletions packages/EasyEventDispatcher/docs/laravel/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ not familiar with this concept make sure to have a look at the [documentation][1
'providers' => [
// Other Service Providers...

\EonX\EasyEventDispatcher\Bridge\Laravel\EasyEventDispatcherServiceProvider::class,
\EonX\EasyEventDispatcher\Laravel\EasyEventDispatcherServiceProvider::class,
],
```

Expand All @@ -35,7 +35,7 @@ $app = new Laravel\Lumen\Application(\dirname(__DIR__));

// Other actions...

$app->register(\EonX\EasyEventDispatcher\Bridge\Laravel\EasyEventDispatcherServiceProvider::class);
$app->register(\EonX\EasyEventDispatcher\Laravel\EasyEventDispatcherServiceProvider::class);
```

[1]: https://laravel.com/docs/5.8/providers
2 changes: 1 addition & 1 deletion packages/EasyEventDispatcher/docs/symfony/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ yourself:
return [
// Other bundles ...

EonX\EasyEventDispatcher\Bridge\Symfony\EasyEventDispatcherSymfonyBundle::class => ['all' => true],
EonX\EasyEventDispatcher\Bundle\EasyEventDispatcherBundle::class => ['all' => true],
];
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
declare(strict_types=1);

namespace EonX\EasyEventDispatcher\Bridge\Laravel;
namespace EonX\EasyEventDispatcher\Laravel\Dispatcher;

use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use Illuminate\Contracts\Events\Dispatcher as IlluminateDispatcherContract;

final class EventDispatcher implements EventDispatcherInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?php
declare(strict_types=1);

namespace EonX\EasyEventDispatcher\Bridge\Laravel;
namespace EonX\EasyEventDispatcher\Laravel;

use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;
use EonX\EasyEventDispatcher\Laravel\Dispatcher\EventDispatcher;
use Illuminate\Contracts\Container\Container;
use Illuminate\Contracts\Events\Dispatcher as IlluminateDispatcherContract;
use Illuminate\Support\ServiceProvider;
Expand Down
7 changes: 3 additions & 4 deletions packages/EasyEventDispatcher/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,20 @@ $ composer require eonx-com/easy-event-dispatcher

### Usage

This package will register the `EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface` within the DI container,
This package will register the `EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface` within the DI container,
allowing you to use dependency injection to dispatch your events.

```php
// src/MyService.php

namespace App;

use App\MyEvent;
use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use App\MyEvent;use EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface;

final class MyService
{
/**
* @var \EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface
* @var \EonX\EasyEventDispatcher\Dispatcher\EventDispatcherInterface
*/
private $eventDispatcher;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?php
declare(strict_types=1);

namespace EonX\EasyEventDispatcher\Bridge\Symfony;
namespace EonX\EasyEventDispatcher\Dispatcher;

use EonX\EasyEventDispatcher\Interfaces\EventDispatcherInterface;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface as SymfonyEventDispatcherInterface;

final class EventDispatcher implements EventDispatcherInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace EonX\EasyEventDispatcher\Interfaces;
namespace EonX\EasyEventDispatcher\Dispatcher;

interface EventDispatcherInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace EonX\EasyEventDispatcher\Tests\Bridge\Laravel\Stubs;
namespace EonX\EasyEventDispatcher\Tests\Stub\Dispatcher;

use Illuminate\Contracts\Events\Dispatcher;

Expand Down
Loading