From 06822c89f66bb2f05bd07bc346431167bdbf383d Mon Sep 17 00:00:00 2001 From: Edward Speyer Date: Tue, 20 Mar 2012 11:27:19 -0700 Subject: [PATCH] [Aphront] fix setter for AphrontCrumbsView Summary: The idiom is to return $this in all setters; I think this got missed in AphrontCrumbsView by mistake. Test Plan: Use an AphrontCrumbsView! Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1966 --- src/view/layout/crumbs/AphrontCrumbsView.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/view/layout/crumbs/AphrontCrumbsView.php b/src/view/layout/crumbs/AphrontCrumbsView.php index 7085651519..523db78e57 100644 --- a/src/view/layout/crumbs/AphrontCrumbsView.php +++ b/src/view/layout/crumbs/AphrontCrumbsView.php @@ -1,7 +1,7 @@ crumbs = $crumbs; - return; + return $this; } public function render() {