Skip to content

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
Added the DispatcherInterface to the DocumentInterface.
  • Loading branch information
Martin Brecht-Precht committed Sep 14, 2016
1 parent 95288e0 commit c2f52de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
},
"require": {
"php": ">=5.3",
"markdom/handler-interface": "^1.0.3"
"markdom/handler-interface": "^1.0.10"
}
}
3 changes: 2 additions & 1 deletion src/Block/DocumentInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

namespace Markdom\ModelInterface\Block;

use Markdom\DispatcherInterface\DispatcherInterface;
use Markdom\HandlerInterface\HandlerInterface;

/**
* Interface DocumentInterface
*
* @package Markdom\ModelInterface\Block
*/
interface DocumentInterface extends BlockParentInterface
interface DocumentInterface extends BlockParentInterface, DispatcherInterface
{

/**
Expand Down

0 comments on commit c2f52de

Please sign in to comment.