From 57ed849cee49a4e7c2133a6445dc21ddcdb6cfa2 Mon Sep 17 00:00:00 2001 From: Alexander Klimov Date: Tue, 7 Apr 2015 11:25:32 +0200 Subject: [PATCH] Icinga\Web\Widget\SortBox::applyRequest(): return $this --- library/Icinga/Web/Widget/SortBox.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/library/Icinga/Web/Widget/SortBox.php b/library/Icinga/Web/Widget/SortBox.php index 18ed95b86..26e5257e7 100644 --- a/library/Icinga/Web/Widget/SortBox.php +++ b/library/Icinga/Web/Widget/SortBox.php @@ -72,10 +72,13 @@ class SortBox extends AbstractWidget * Apply the parameters from the given request on this SortBox * * @param Request $request The request to use for populating the form + * + * @return static $this */ public function applyRequest($request) { $this->request = $request; + return $this; } /**