1
0
mirror of synced 2025-01-18 22:41:43 +03:00

Renamed a variable

This commit is contained in:
Christian Heinrich 2010-08-17 01:50:51 +02:00 committed by Jonathan H. Wage
parent 70d12fc57a
commit 4232509427

View File

@ -82,7 +82,7 @@ method which returns an array of events it should be subscribed to.
Now when you dispatch an event any event subscribers will be notified for that event.
[php]
$evm->dispatchEvent(TestEventSubscriber::preFoo);
$evm->dispatchEvent(TestEvent::preFoo);
Now you can test the `$eventSubscriber` instance to see if the `preFoo()` method was invoked.