Fix small typo

Fix a small typo by adding a missing $this.
This commit is contained in:
Honoré HOUNWANOU 2018-10-31 05:11:57 -04:00 committed by GitHub
parent a97046ec63
commit 881585be15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ public function __construct(MarkdownParserInterface $parser)
public function someMethod()
{
$html = $parser->transformMarkdown($text);
$html = $this->parser->transformMarkdown($text);
}
```