From 33abe8b790d1d29771bb248e0144a2a973b12120 Mon Sep 17 00:00:00 2001 From: KUBO Atsuhiro Date: Wed, 21 Aug 2013 17:30:24 +0900 Subject: [PATCH] [PageFlow] changed the type of the second argument of the EventHandler::__construct() method to PageFlowInterface (Issue #4) --- src/Piece/Flow/PageFlow/EventHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Piece/Flow/PageFlow/EventHandler.php b/src/Piece/Flow/PageFlow/EventHandler.php index 79988fe..b154c0e 100644 --- a/src/Piece/Flow/PageFlow/EventHandler.php +++ b/src/Piece/Flow/PageFlow/EventHandler.php @@ -63,9 +63,9 @@ class EventHandler * Wraps a action up with an EventHandler object. * * @param string $actionID - * @param \Piece\Flow\PageFlow\PageFlow $pageFlow + * @param \Piece\Flow\PageFlow\PageFlowInterface $pageFlow */ - public function __construct($actionID, PageFlow $pageFlow) + public function __construct($actionID, PageFlowInterface $pageFlow) { $this->actionID = $actionID; $this->pageFlow = $pageFlow;