From 46573f858bdfff206ecaf1cf423bbb948206e5ff Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Fri, 18 Oct 2024 15:46:41 -0400 Subject: [PATCH] Return in setInput(). Saves a line of boilerplate. --- src/Options/FormatterOptions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Options/FormatterOptions.php b/src/Options/FormatterOptions.php index c753df2..4a0c3a3 100644 --- a/src/Options/FormatterOptions.php +++ b/src/Options/FormatterOptions.php @@ -448,11 +448,12 @@ public function getOptions() * options for this request. * * @param InputInterface $input - * @return type + * @return self */ public function setInput(InputInterface $input) { $this->input = $input; + return $this; } /**