1 | <?php |
||
8 | class Context implements ContextInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var mixed|null |
||
12 | */ |
||
13 | private $payload; |
||
14 | |||
15 | /** |
||
16 | * Constructor. |
||
17 | * |
||
18 | * @param mixed|null $payload |
||
19 | */ |
||
20 | public function __construct($payload = null) |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function getPayload() |
||
32 | } |