Fix exception class in InvocationMocker und MockBuilder strub

This commit is contained in:
Philip Weinke 2021-05-28 12:07:15 +02:00
parent a95b6b8f05
commit 7c48505f03
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ class InvocationMocker
*
* @return static
*
* @throws RuntimeException
* @throws \RuntimeException
*/
public function with(...$arguments) {}
}

View File

@ -50,7 +50,7 @@ interface MockObject
*
* @return InvocationMocker
*
* @throws RuntimeException
* @throws \RuntimeException
*/
public function method($constraint);
}