summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser/EventHandler.php
diff options
context:
space:
mode:
authorTechnosophos <[email protected]>2013-04-10 17:07:22 -0500
committerTechnosophos <[email protected]>2013-04-10 17:07:22 -0500
commitdd505f77a4d67f7d0f484fea29105c29f4b40db8 (patch)
tree88d894019f73e4541335219799a3564b30819b5f /src/HTML5/Parser/EventHandler.php
parent503a3d00cdf2358cc66ce63959ce6dd5f6abf953 (diff)
Working on entity resolution.
Diffstat (limited to 'src/HTML5/Parser/EventHandler.php')
-rw-r--r--src/HTML5/Parser/EventHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTML5/Parser/EventHandler.php b/src/HTML5/Parser/EventHandler.php
index f144fc3..51960f1 100644
--- a/src/HTML5/Parser/EventHandler.php
+++ b/src/HTML5/Parser/EventHandler.php
@@ -11,7 +11,7 @@ interface EventHandler {
public function startTag($name, $attributes = array(), $selfClosing = FALSE);
public function endTag($name);
public function comment($cdata);
- public function character($cdata);
+ public function text($cdata);
public function eof();
// Do we need...