From f11b1679c05d485ab3e839781ebc5482febd6cb9 Mon Sep 17 00:00:00 2001
From: Vinai Kopp <vinai@netzarbeiter.com>
Date: Thu, 8 Jan 2015 15:01:36 +0100
Subject: [PATCH] Make interpret() return value conform to interface

Change View\Layout\Reader\Move::interpret() return value to conform
with Layout\ReaderInterface::interpret()
---
 lib/internal/Magento/Framework/View/Layout/Reader/Move.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/internal/Magento/Framework/View/Layout/Reader/Move.php b/lib/internal/Magento/Framework/View/Layout/Reader/Move.php
index 9d0fe73d2b0..e9b1c618583 100644
--- a/lib/internal/Magento/Framework/View/Layout/Reader/Move.php
+++ b/lib/internal/Magento/Framework/View/Layout/Reader/Move.php
@@ -34,7 +34,7 @@ class Move implements Layout\ReaderInterface
     public function interpret(Context $readerContext, Layout\Element $currentElement)
     {
         $this->scheduleMove($readerContext->getScheduledStructure(), $currentElement);
-        return false;
+        return $this;
     }
 
     /**
-- 
GitLab