Merge pull request #54 from stof/bc_interface

Reverted the interface renaming done in #50
This commit is contained in:
Alex Demchenko 2014-02-20 13:01:37 +02:00
commit c24fca93e1
2 changed files with 2 additions and 2 deletions

View file

@ -11,5 +11,5 @@ interface MarkdownParserInterface
* *
* @return string rendered html * @return string rendered html
*/ */
function transform($text); function transformMarkdown($text);
} }

View file

@ -23,7 +23,7 @@ class SundownParser implements MarkdownParserInterface
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function transform($text) public function transformMarkdown($text)
{ {
return $this->parser->render($text); return $this->parser->render($text);
} }