diff --git a/stubs/projector.stub b/stubs/projector.stub index 6d6184f..39a0847 100644 --- a/stubs/projector.stub +++ b/stubs/projector.stub @@ -12,7 +12,7 @@ class DummyClass implements Projector /* * Here you can specify which event should trigger which method. */ - protected $handlesEvents = [ + public $handlesEvents = [ // EventHappened::class => 'onEventHappened', ]; diff --git a/stubs/reactor.stub b/stubs/reactor.stub index 84bc61f..c0852af 100644 --- a/stubs/reactor.stub +++ b/stubs/reactor.stub @@ -12,7 +12,7 @@ class DummyClass implements EventHandler /* * Here you can specify which event should trigger which method. */ - protected $handlesEvents = [ + public $handlesEvents = [ // EventHappened::class => 'onEventHappened', ];