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 e60dd6e commit 2bfb190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/DeployController.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public function deployEvent(Server $server, string $repository, string $event):
Log::error("test", [
'test' => request()->all(),
'test2' => request()->all()[0] ?? null,
'test3' => request()->all()[0]->branch ?? null,
'test3' => request()->all()[0]['branch'] ?? null,
'test4' => json_decode(request()->all()[0], true)['branch'] ?? null,
]);

$site = match ($event) {
Expand Down

0 comments on commit 2bfb190

Please sign in to comment.