| 1 | <?php |
||
| 21 | class AssembleContext |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var mixed |
||
| 25 | */ |
||
| 26 | private $payload; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor. |
||
| 30 | * |
||
| 31 | * @param array $payload |
||
| 32 | */ |
||
| 33 | 3 | public function __construct(array $payload = []) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | 1 | public function get(string $key, $value = null) |
|
| 45 | } |
||
| 46 |