* Backware Compatibility Support * This is not needed due to simply using .get() and .notice() instead. * It's provided here for backward compatibility. * The "name" parameter is defunct and does nothing. * Otherwise the 'notice()' method is called * DO NOT USE THIS METHOD. Use the me
({ name, message } = {})
| 556 | * DO NOT USE THIS METHOD. Use the methods above instead. |
| 557 | */ |
| 558 | create({ name, message } = {}) { |
| 559 | this.notice(message) |
| 560 | return this |
| 561 | } |
| 562 | |
| 563 | update(message) { |
| 564 | this.notice(message) |
no test coverage detected