Skip to content

Commit

Permalink
[PageFlow] changed the type of the second argument of the EventHandle…
Browse files Browse the repository at this point in the history
…r::__construct() method to PageFlowInterface (Issue piece#4)
  • Loading branch information
iteman committed Aug 22, 2013
1 parent d14ea34 commit 33abe8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Piece/Flow/PageFlow/EventHandler.php
Expand Up @@ -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;
Expand Down

0 comments on commit 33abe8b

Please sign in to comment.