From 300908ddaffd4788b1f32ce5b58fb7480451652a Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 29 Jan 2019 21:49:20 -0500 Subject: [PATCH] Fix syntax error --- src/ActivityPub.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ActivityPub.php b/src/ActivityPub.php index 0393512..4eaf4b3 100644 --- a/src/ActivityPub.php +++ b/src/ActivityPub.php @@ -94,7 +94,7 @@ class ActivityPub { $dispatcher->addSubscriber( $this->module->get( NonActivityHandler::class ) ); $dispatcher->addSubscriber( $this->module->get( ValidationHandler::class ) ); - $dispatcher->addSubscriber( $this->module->get( CreateHandler::class ); + $dispatcher->addSubscriber( $this->module->get( CreateHandler::class ) ); } } ?>