-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmediator.php
72 lines (58 loc) · 1.37 KB
/
mediator.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
interface Mediator
{
public function handle(Component $component): string;
}
abstract class Component
{
private Mediator $mediator;
public function setMediator(Mediator $mediator): void
{
$this->mediator = $mediator;
}
public function make(): string
{
return $this->mediator->handle($this);
}
abstract public function execute(): string;
}
class ComponentA extends Component
{
public function execute(): string
{
return __METHOD__;
}
}
class ComponentB extends Component
{
public function execute(): string
{
return __METHOD__;
}
}
class MediatorImplementation implements Mediator
{
public function __construct(
private ComponentA $componentA,
private ComponentB $componentB
) {
$this->componentA->setMediator($this);
$this->componentB->setMediator($this);
}
public function handle(Component $component): string
{
if ($component instanceof ComponentA) {
return $this->componentB->execute();
} elseif ($component instanceof ComponentB) {
return $this->componentA->execute();
}
return '';
}
}
/**
* Client
*/
$componentA = new ComponentA();
$componentB = new ComponentB();
$mediatorImplementation = new MediatorImplementation($componentA, $componentB);
echo $componentA->make();