Skip to content

Commit

Permalink
Merge pull request #279 from wand2016/1.x
Browse files Browse the repository at this point in the history
Fix README
  • Loading branch information
koriym committed Mar 10, 2023
2 parents 3eaaa68 + 1bc000d commit d488d94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -55,14 +55,14 @@ class Author extends ResourceObject

public function onPut(int $id, string $name): static
{
$this->code = 203; // no content
$this->code = 204; // no content
//...
return $this;
}

public function onDelete($id): static
{
$this->code = 203; // no content
$this->code = 204; // no content
//...
return $this;
}
Expand Down

0 comments on commit d488d94

Please sign in to comment.