From bf6cfe8af056b3657ce7ceaa4b68983ef205436b Mon Sep 17 00:00:00 2001 From: Aidan Woods Date: Wed, 8 Dec 2021 20:28:22 +0000 Subject: [PATCH] Show importing of Parsedown and State in example --- docs/Migrating-Extensions-v2.0.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Migrating-Extensions-v2.0.md b/docs/Migrating-Extensions-v2.0.md index 8b2f781..ccefdc8 100644 --- a/docs/Migrating-Extensions-v2.0.md +++ b/docs/Migrating-Extensions-v2.0.md @@ -68,6 +68,8 @@ functionality from different authors as they like. For example, a feature of Par A user could import *only* the abbreviations feature from ParsedownExtra by using the following: ```php +use Erusev\Parsedown\State; +use Erusev\Parsedown\Parsedown; use Erusev\ParsedownExtra\Features\Abbreviations; $State = Abbreviations::from(new State);