From 02dd8ac6d1795e39cd1acf590ab0aa46e6335fa9 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 14 Jan 2008 15:09:45 -0500 Subject: [PATCH] Making BSPrinterRootElementPage::setNavigator() part of the fluent interface * PrinterRootElementPage.php (BSPrinterRootElementPage::setNavigator): Return a fluent interface --- PrinterRootElementPage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PrinterRootElementPage.php b/PrinterRootElementPage.php index eb70ee0..eb18411 100644 --- a/PrinterRootElementPage.php +++ b/PrinterRootElementPage.php @@ -79,10 +79,13 @@ class BSPrinterRootElementPage extends BSPrinterRootElement * Sets the navigation object * * @param BSPrinterNavigation Navigator + * + * @return fluent interface */ public function setNavigator(BSPrinterNavigation $nav) { $this->navigator = $nav; + return $this; } /** -- 2.22.5