From e55bed27c32ff348787ebbb594781657985c73ff Mon Sep 17 00:00:00 2001 From: Alfonso Machado Date: Fri, 17 Jul 2015 09:17:54 +0200 Subject: [PATCH] Update event-dispatcher.rst --- create_framework/event-dispatcher.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_framework/event-dispatcher.rst b/create_framework/event-dispatcher.rst index fce91ac59bd..9d6b8c1ba89 100644 --- a/create_framework/event-dispatcher.rst +++ b/create_framework/event-dispatcher.rst @@ -13,7 +13,7 @@ needs. Many software have a similar concept like Drupal or Wordpress. In some languages, there is even a standard like `WSGI`_ in Python or `Rack`_ in Ruby. As there is no standard for PHP, we are going to use a well-known design -pattern, the *Observer*, to allow any kind of behaviors to be attached to our +pattern, the *Mediator*, to allow any kind of behaviors to be attached to our framework; the Symfony EventDispatcher Component implements a lightweight version of this pattern: