From e99522a6b0847f330fd566ea40ece00d2b1fc642 Mon Sep 17 00:00:00 2001 From: Enea Date: Sun, 3 Sep 2023 19:53:13 +0200 Subject: [PATCH] Should fix #2 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 12d2c38..e6ac2a7 100644 --- a/README.md +++ b/README.md @@ -434,7 +434,7 @@ $dependencies = ConfigFactory::make([ EventDispatcher::class, SubscriberRegister::class, ], - // Now add in the array all your subscribers that implemente the ItalyStrap\Event\SubscriberInterface + // Now add in the array all your subscribers that implement the ItalyStrap\Event\SubscriberInterface // The instances create are shared by default for later removing like you se above. SubscribersConfigExtension::SUBSCRIBERS => [ Subscriber::class, @@ -442,7 +442,7 @@ $dependencies = ConfigFactory::make([ // You can also add more configuration for the AurynResolver https://github.com/ItalyStrap/empress ]); -// This wil instantiate the EventResolverExtension::class +// This will instantiate the EventResolverExtension::class $event_resolver = $injector->make( SubscribersConfigExtension::class, [ // In the EventResolverExtension object you can pass a config key value pair for adding or not listener at runtime // from your theme or plugin options @@ -560,7 +560,7 @@ $dependencies = ConfigFactory::make([ AurynResolver::PROXY => [ MyBusinessLogic::class, ], - // Now add in the array all your subscribers that implemente the ItalyStrap\Event\SubscriberInterface + // Now add in the array all your subscribers that implement the ItalyStrap\Event\SubscriberInterface // The instances create are shared by default for later removing like you se above. SubscribersConfigExtension::SUBSCRIBERS => [ MyClassSubscriber::class, @@ -568,7 +568,7 @@ $dependencies = ConfigFactory::make([ // You can also add more configuration for the AurynResolver https://github.com/ItalyStrap/empress ]); -// This wil instantiate the EventResolverExtension::class +// This will instantiate the EventResolverExtension::class $event_resolver = $injector->make( SubscribersConfigExtension::class, [ // In the EventResolverExtension object you can pass a config key value pair for adding or not listener at runtime // from your theme or plugin options