Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
14 | 83 | public function map(): void |
|
15 | { |
||
16 | 83 | Route::get('/', 'FondBot\Foundation\Controller@index'); |
|
17 | |||
18 | 83 | Route::group(['middleware' => 'fondbot.webhook'], function () { |
|
19 | 83 | Route::get('webhook/{channel}', 'FondBot\Foundation\Controller@webhook')->name('fondbot.webhook'); |
|
20 | 83 | Route::post('webhook/{channel}', 'FondBot\Foundation\Controller@webhook')->name('fondbot.webhook'); |
|
21 | 83 | }); |
|
22 | } |
||
23 | } |
||
24 |