[feature/event-dispatcher] Correct copyright statement for Symfony2 files

Also add a notice to the files that were taken from Symfony2.

PHPBB3-9550
This commit is contained in:
Igor Wiedler 2012-01-08 13:20:44 +01:00
parent 71c5eddb71
commit 4c62dcd0ff
4 changed files with 24 additions and 4 deletions

View file

@ -2,7 +2,7 @@
/** /**
* *
* @package phpBB3 * @package phpBB3
* @copyright (c) 2011 phpBB Group * @copyright (c) Fabien Potencier <fabien@symfony.com>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
@ -15,6 +15,11 @@ if (!defined('IN_PHPBB'))
exit; exit;
} }
/**
* This file has been taken from Symfony2 and adjusted for
* phpBB's coding standards.
*/
/** /**
* The EventDispatcherInterface is the central point of Symfony's event listener system. * The EventDispatcherInterface is the central point of Symfony's event listener system.
* *

View file

@ -2,7 +2,7 @@
/** /**
* *
* @package phpBB3 * @package phpBB3
* @copyright (c) 2011 phpBB Group * @copyright (c) Fabien Potencier <fabien@symfony.com>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
@ -15,6 +15,11 @@ if (!defined('IN_PHPBB'))
exit; exit;
} }
/**
* This file has been taken from Symfony2 and adjusted for
* phpBB's coding standards.
*/
/** /**
* The EventDispatcherInterface is the central point of Symfony's event listener system. * The EventDispatcherInterface is the central point of Symfony's event listener system.
* Listeners are registered on the manager and events are dispatched through the * Listeners are registered on the manager and events are dispatched through the

View file

@ -2,7 +2,7 @@
/** /**
* *
* @package phpBB3 * @package phpBB3
* @copyright (c) 2011 phpBB Group * @copyright (c) Fabien Potencier <fabien@symfony.com>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
@ -15,6 +15,11 @@ if (!defined('IN_PHPBB'))
exit; exit;
} }
/**
* This file has been taken from Symfony2 and adjusted for
* phpBB's coding standards.
*/
/** /**
* Event is the base class for classes containing event data. * Event is the base class for classes containing event data.
* *

View file

@ -2,7 +2,7 @@
/** /**
* *
* @package phpBB3 * @package phpBB3
* @copyright (c) 2011 phpBB Group * @copyright (c) Fabien Potencier <fabien@symfony.com>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
* *
*/ */
@ -15,6 +15,11 @@ if (!defined('IN_PHPBB'))
exit; exit;
} }
/**
* This file has been taken from Symfony2 and adjusted for
* phpBB's coding standards.
*/
/** /**
* An EventSubscriber knows himself what events he is interested in. * An EventSubscriber knows himself what events he is interested in.
* If an EventSubscriber is added to an EventDispatcherInterface, the manager invokes * If an EventSubscriber is added to an EventDispatcherInterface, the manager invokes