Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function getSolution(): Solution |
||
23 | { |
||
24 | return BaseSolution::create('Your application id could not be found') |
||
25 | ->setSolutionDescription('Make sure that your `config/websockets.php` contains the app key you are trying to use.') |
||
26 | ->setDocumentationLinks([ |
||
27 | 'Configuring WebSocket Apps (official documentation)' => 'https://docs.beyondco.de/laravel-websockets/1.0/basic-usage/pusher.html#configuring-websocket-apps', |
||
28 | ]); |
||
29 | } |
||
30 | } |
||
31 |