1 | <?php |
||
7 | * @Target({"CLASS"}) |
||
8 | */ |
||
9 | final class Handler |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $handler; |
||
15 | |||
16 | /** |
||
17 | * Handler constructor. |
||
18 | * @param string $handler |
||
19 | */ |
||
20 | public function __construct($handler) |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getHandler() |
||
29 | { |
||
30 | return $this->handler; |
||
31 | } |
||
33 |