Skip to content

Commit

Permalink
update response
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Sep 22, 2024
1 parent d4002b9 commit d8ca484
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions tests/Generator/Schema/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
class TestResponse
{
private ?TestMapScalar $args = null;
private ?string $data = null;
private ?TestMapScalar $files = null;
private ?TestMapScalar $form = null;
private ?TestMapScalar $headers = null;
private ?TestRequest $json = null;
private ?string $method = null;
Expand All @@ -40,6 +43,36 @@ public function setArgs(?TestMapScalar $args): void
$this->args = $args;
}

public function getData(): ?string
{
return $this->data;
}

public function setData(?string $data): void
{
$this->data = $data;
}

public function getFiles(): ?TestMapScalar
{
return $this->files;
}

public function setFiles(?TestMapScalar $files): void
{
$this->files = $files;
}

public function getForm(): ?TestMapScalar
{
return $this->form;
}

public function setForm(?TestMapScalar $form): void
{
$this->form = $form;
}

public function getHeaders(): ?TestMapScalar
{
return $this->headers;
Expand Down

0 comments on commit d8ca484

Please sign in to comment.