-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandHandler.php
50 lines (41 loc) · 1.17 KB
/
CommandHandler.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
<?php
/*
* This file is part of the broadway/broadway package.
*
* (c) Qandidate.com <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Broadway\CommandHandling;
use Broadway\CommandHandling\Exception\CommandNotAnObjectException;
/**
* Convenience base class for command handlers.
*
* Command handlers using this base class will implement `handle<CommandName>`
* methods for each command they can handle.
*
* Note: the convention used does not take namespaces into account.
*/
abstract class CommandHandler implements CommandHandlerInterface
{
/**
* {@inheritDoc}
*/
public function handle($command)
{
$method = $this->getHandleMethod($command);
if (! method_exists($this, $method)) {
return;
}
$this->$method($command);
}
private function getHandleMethod($command)
{
if (! is_object($command)) {
throw new CommandNotAnObjectException();
}
$classParts = explode('\\', get_class($command));
return 'handle' . end($classParts);
}
}