forked from phly/phly-event-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigProvider.php
44 lines (41 loc) · 1.49 KB
/
ConfigProvider.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* @see https://github.com/phly/phly-event-dispatcher for the canonical source repository
* @copyright Copyright (c) 2018 Matthew Weier O'Phinney (https:/mwop.net)
* @license https://github.com/phly/phly-event-dispatcher/blob/master/LICENSE.md New BSD License
*/
declare(strict_types=1);
namespace Phly\EventDispatcher;
class ConfigProvider
{
/**
* @return array<string,array<string,array<string,class-string>>>
*/
public function __invoke() : array
{
return [
'dependencies' => $this->getDependencies(),
];
}
/**
* @return array<string,array<string,class-string>>
*/
public function getDependencies() : array
{
return [
// @codingStandardsIgnoreStart
// phpcs:disable
'invokables' => [
ListenerProvider\AttachableListenerProvider::class => ListenerProvider\AttachableListenerProvider::class,
ListenerProvider\PrioritizedListenerProvider::class => ListenerProvider\PrioritizedListenerProvider::class,
ListenerProvider\RandomizedListenerProvider::class => ListenerProvider\RandomizedListenerProvider::class,
],
// phpcs:endable
// @codingStandardsIgnoreEnd
'factories' => [
EventDispatcher::class => EventDispatcherFactory::class,
ErrorEmittingDispatcher::class => EventDispatcherFactory::class,
],
];
}
}