| 1 | <?php |
||
| 17 | final class NotifyingEvent |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Rates are successfully fetched. |
||
| 21 | */ |
||
| 22 | const FETCH_RATES_SUCCESS = 'fetch_rates_success'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * There has been an error when fetching rates. |
||
| 26 | */ |
||
| 27 | const FETCH_RATES_ERROR = 'fetch_rates_error'; |
||
| 28 | |||
| 29 | private function __construct() |
||
| 33 | } |
||
| 34 |