EventEmitter.php 440 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\Event;
  4. /**
  5. * This is the old name for the Emitter class.
  6. *
  7. * Instead of using EventEmitter, please use Emitter. They are identical
  8. * otherwise.
  9. *
  10. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  11. * @author Evert Pot (http://evertpot.com/)
  12. * @license http://sabre.io/license/ Modified BSD License
  13. */
  14. class EventEmitter implements EmitterInterface
  15. {
  16. use EmitterTrait;
  17. }