Page MenuHomec4science

PhabricatorAutoEventListener.php
No OneTemporary

File Metadata

Created
Thu, Sep 12, 09:18

PhabricatorAutoEventListener.php

<?php
/**
* Event listener which is registered automatically, without requiring
* configuration.
*
* Normally, event listeners must be registered via applications. This is
* appropriate for structured listeners in libraries, but it adds a lot of
* overhead and is cumbersome for one-off listeners.
*
* All concrete subclasses of this class are automatically registered at
* startup. This allows it to be used with custom one-offs that can be dropped
* into `phabricator/src/extensions/`.
*/
abstract class PhabricatorAutoEventListener extends PhabricatorEventListener {}

Event Timeline