missed a bit
This commit is contained in:
parent
dab85e5f26
commit
ee94aca3cd
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ abstract class SimpleExtension implements Extension {
|
||||||
* Several extensions have this in common, make a common API
|
* Several extensions have this in common, make a common API
|
||||||
*/
|
*/
|
||||||
abstract class FormatterExtension extends SimpleExtension {
|
abstract class FormatterExtension extends SimpleExtension {
|
||||||
public function onTextFormatting(TextFormatting $event) {
|
public function onTextFormatting(TextFormattingEvent $event) {
|
||||||
$event->formatted = $this->format($event->formatted);
|
$event->formatted = $this->format($event->formatted);
|
||||||
$event->stripped = $this->strip($event->stripped);
|
$event->stripped = $this->strip($event->stripped);
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue