| 1 | <?php |
||
| 10 | trait InteractsWithContext |
||
| 11 | { |
||
| 12 | /** @var Bot */ |
||
| 13 | protected $bot; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Remember value in context. |
||
| 17 | * |
||
| 18 | * @param string $key |
||
| 19 | * @param $value |
||
| 20 | */ |
||
| 21 | protected function remember(string $key, $value): void |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get user. |
||
| 28 | * |
||
| 29 | * @return User |
||
| 30 | */ |
||
| 31 | public function user(): User |
||
| 35 | } |
||
| 36 |