Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpisa committed Jun 15, 2023
1 parent 13a73af commit 8ec91b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Http/Controllers/DeployController.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ public function deployPullRequest(Server $server, string $repository, string $nu
*/
public function deployEvent(Server $server, string $repository, string $event): JsonResponse
{
Log::error('test', [
Log::error("test", [
'test' => request()->all(),

Check failure on line 47 in app/Http/Controllers/DeployController.php

View workflow job for this annotation

GitHub Actions / checks

Array has 3 duplicate keys with value 'test' ('test', 'test', 'test').
'test' => request()->all()[0] ?? null,
'test' => request()->all()[0]['branch'] ?? null,
]);

$site = match ($event) {
Expand Down

0 comments on commit 8ec91b7

Please sign in to comment.