Skip to content

Commit

Permalink
Response code as const
Browse files Browse the repository at this point in the history
  • Loading branch information
barw4 committed Nov 18, 2024
1 parent b2e42de commit 1bee867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contracts/Output/Visitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function __construct(
private readonly ValueObjectVisitorResolverInterface $valueObjectVisitorResolver,
private readonly string $format,
) {
$this->response = new Response('', 200);
$this->response = new Response('', Response::HTTP_OK);
}

/**
Expand Down

0 comments on commit 1bee867

Please sign in to comment.