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