This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/EventDispatcher
Fabien Potencier c79e61f1f2 minor #39775 [WIP] Use ::class keyword when possible (fabpot)
This PR was merged into the 4.4 branch.

Discussion
----------

[WIP] Use ::class keyword when possible

| Q             | A
| ------------- | ---
| Branch?       | 4.4 <!-- see below -->
| Bug fix?      | no
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tickets       | n/a  <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead -->
| License       | MIT
| Doc PR        | n/a

Commits
-------

036a36cb14 Use ::class keyword when possible
2021-01-11 07:02:33 +01:00
..
Debug Use short array deconstruction syntax. 2020-10-28 21:42:29 +01:00
DependencyInjection CS: Apply ternary_to_null_coalescing fixer 2020-12-27 00:49:32 +01:00
Tests Use ::class keyword when possible 2021-01-10 17:45:22 +01:00
.gitattributes add missing gitattributes for phpunit-bridge 2020-03-27 17:54:36 +01:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md cs fix 2019-10-09 16:35:36 +02:00
composer.json Improve composer.json descriptions 2021-01-10 17:25:35 +01:00
Event.php [Contracts][EventDispatcher] move the Event class to symfony/contracts 2019-03-29 19:47:03 +01:00
EventDispatcher.php CS: Apply ternary_to_null_coalescing fixer 2020-12-27 00:49:32 +01:00
EventDispatcherInterface.php [Contracts][EventDispatcher] add EventDispatcherInterface to symfony/contracts and use it where possible 2019-03-25 18:18:00 +01:00
EventSubscriberInterface.php [DI][EventDispatcher] added contract for implementation 2020-05-05 17:06:23 +02:00
GenericEvent.php Apply php-cs-fixer rule for array_key_exists() 2019-02-23 16:06:07 +01:00
ImmutableEventDispatcher.php fixed CS 2019-06-13 13:03:18 +02:00
LegacyEventDispatcherProxy.php Merge branch '3.4' into 4.4 2020-09-02 18:08:58 +02:00
LegacyEventProxy.php Add return types to tests and final|internal|private methods 2019-08-21 17:14:41 +02:00
LICENSE Bump license year 2021-01-01 10:24:35 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md Update links to documentation 2020-01-04 13:05:51 +01:00

EventDispatcher Component

The EventDispatcher component provides tools that allow your application components to communicate with each other by dispatching events and listening to them.

Resources