Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Phockito.php
Original file line number Diff line number Diff line change
Expand Up @@ -532,9 +532,12 @@ interface Phockito_MockMarker {
* A builder than is returned by Phockito::when to capture the methods that specify the stubbed responses
* for a particular mocked method / arguments set
*
* @method Phockito_WhenBuilder return($value) thenReturn($value)
* @method Phockito_WhenBuilder throw($exception) thenThrow($exception)
* @method Phockito_WhenBuilder callback($callback) thenCallback($callback)
* @method Phockito_WhenBuilder return($value)
* @method Phockito_WhenBuilder thenReturn($value)
* @method Phockito_WhenBuilder throw($exception)
* @method Phockito_WhenBuilder thenThrow($exception)
* @method Phockito_WhenBuilder callback($callback)
* @method Phockito_WhenBuilder thenCallback($callback)
* @method Phockito_WhenBuilder then($arg)
*/
class Phockito_WhenBuilder {
Expand Down