Skip to content

Commit

Permalink
Merge pull request #1027 from dciancu/master
Browse files Browse the repository at this point in the history
Add back getActualArguments() to NoMatchingExpectationException
  • Loading branch information
robertbasic committed Dec 4, 2019
2 parents 84ee046 + 4f5f771 commit c216606
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions library/Mockery/Exception/NoMatchingExpectationException.php
Expand Up @@ -128,6 +128,14 @@ private function setActualArguments($count)
return $this;
}

/**
* @return array
*/
public function getActualArguments()
{
return $this->actual;
}

/**
* @return Mockery\MockInterface
*/
Expand Down

0 comments on commit c216606

Please sign in to comment.