| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function handle(ChannelManager $manager): void |
||
| 16 | { |
||
| 17 | $rows = collect($manager->all()) |
||
| 18 | ->transform(function ($item, $name) { |
||
| 19 | return [$name, $item['driver'], route('fondbot.webhook', $name)]; |
||
| 20 | }) |
||
| 21 | ->toArray(); |
||
| 22 | |||
| 23 | $this->table(['Name', 'Driver', 'Webhook URL'], $rows); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |