| 1 | <?php |
||
| 8 | class EventsController extends Controller |
||
| 9 | { |
||
| 10 | /** @var \Sausin\Signere\Events */ |
||
| 11 | protected $events; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Create a new controller instance. |
||
| 15 | * |
||
| 16 | * @param \Sausin\Signere\Events $events |
||
| 17 | */ |
||
| 18 | 1 | public function __construct(Events $events) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Returns the EventsQueue encryptionKey |
||
| 27 | * as a base64 encoded string. |
||
| 28 | * |
||
| 29 | * @return \Illuminate\Http\Response |
||
| 30 | */ |
||
| 31 | 1 | public function __invoke() |
|
| 37 | } |
||
| 38 |