Skip to content

Commit

Permalink
Fix: Remove useless DocBlocks
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and sebastianbergmann committed Jul 3, 2020
1 parent 7bcfc74 commit e2b5343
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Framework/MockObject/Builder/InvocationMocker.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ public function willReturn($value, ...$nextValues): self
return $this->will($stub);
}

/** {@inheritDoc} */
public function willReturnReference(&$reference): self
{
$stub = new ReturnReference($reference);
Expand All @@ -109,7 +108,6 @@ public function willReturnArgument($argumentIndex): self
return $this->will($stub);
}

/** {@inheritDoc} */
public function willReturnCallback($callback): self
{
$stub = new ReturnCallback($callback);
Expand Down

0 comments on commit e2b5343

Please sign in to comment.