Skip to content

Commit

Permalink
Add @inheritdoc annotations to FakeRequest methods
Browse files Browse the repository at this point in the history
The commit adds the @inheritdoc annotation to all methods in the FakeRequest class. The clear reference to the documentation from the implemented interfaces will aid readability and further understanding of the code base.
  • Loading branch information
koriym committed May 23, 2024
1 parent c85d26f commit b9662d0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/Fake/FakeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,43 +6,52 @@

class FakeRequest implements RequestInterface
{
/** @inheritDoc */
public function __invoke(?array $query = null): ResourceObject
{
// TODO: Implement __invoke() method.
}

/** @inheritDoc */
public function withQuery(array $query): RequestInterface
{
}

/** @inheritDoc */
public function addQuery(array $query): RequestInterface
{
}

/** @inheritDoc */
public function toUri(): string
{
}

/** @inheritDoc */
public function toUriWithMethod(): string
{
}

/** @inheritDoc */
public function hash(): string
{
}

/** @inheritDoc */
public function request()
{
}

/** @inheritDoc */
public function linkSelf(string $linkKey): RequestInterface
{
}

/** @inheritDoc */
public function linkNew(string $linkKey): RequestInterface
{
}

/** @inheritDoc */
public function linkCrawl(string $linkKey): RequestInterface
{
}
Expand Down

0 comments on commit b9662d0

Please sign in to comment.