From a5137925cd3527a8ce8a7dbc0356dbcf4df164ff Mon Sep 17 00:00:00 2001 From: Rowan Hill Date: Wed, 23 Apr 2014 20:40:30 +0100 Subject: [PATCH] Move Phockito_WhenBuilder method hints to own line --- Phockito.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Phockito.php b/Phockito.php index d65d162..bab2cd9 100644 --- a/Phockito.php +++ b/Phockito.php @@ -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 {