e99c22b007
* Emails not sending #795 #722 * Fix for news items not being sent; refactor some events; check for opt-in #722 * Formatting * Remove extra parameter
13 lines
149 B
PHP
13 lines
149 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
|
|
/**
|
|
* @deprecated Extend App\Contracts\Event directly
|
|
*/
|
|
class BaseEvent extends Event
|
|
{
|
|
}
|