We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b676f17 + 6183b73 commit f8cf137Copy full SHA for f8cf137
src/SendJob.php
@@ -56,7 +56,7 @@ public function handle(): void
56
$httpClient = new Client($httpClientOption);
57
58
try {
59
- $response = $httpClient->post($this->url, $requestOptions);
+ $httpClient->post($this->url, $requestOptions);
60
} catch (\Throwable $exception) {
61
$this->fail($exception);
62
}
src/TopicDetector.php
@@ -221,8 +221,7 @@ protected function getMainLivewireClass(): array
221
$method = null;
222
223
224
- $request = request();
225
- $payload = $request->all();
+ $payload = request()->all();
226
227
if (isset($payload['components'][0])) {
228
$componentData = $payload['components'][0];
0 commit comments