Senior
19 agosto 2026Trova il bug: Laravel
Uno snippet di codice. Trova il bug, o dimostra che non ce n'è.
php
1<?php
2
3namespace App\Services;
4
5use Illuminate\Support\Facades\Http;
6
7class SlackNotifier
8{
9 public function send(string $message): void
10 {
11 $webhook = env('SLACK_WEBHOOK_URL');
12
13 Http::timeout(5)->post($webhook, [
14 'text' => $message,
15 ]);
16 }
17}
18Clicca sulle righe che causano il problema.
Il tuo verdetto
Un tentativo al giorno. La risposta appare subito dopo.
Mantieni la tua serie
Crea un account per conservare la tua serie e seguire i tuoi progressi.