Files
animethemes-server/app/Events/Base/List/ListCreatedEvent.php
T

28 lines
567 B
PHP

<?php
declare(strict_types=1);
namespace App\Events\Base\List;
use App\Constants\Config\ServiceConstants;
use App\Events\Base\BaseCreatedEvent;
use Illuminate\Support\Facades\Config;
/**
* @template TModel of \App\Models\BaseModel
*
* @extends BaseCreatedEvent<TModel>
*/
abstract class ListCreatedEvent extends BaseCreatedEvent
{
public function getDiscordChannel(): string
{
return Config::get(ServiceConstants::ADMIN_DISCORD_CHANNEL_QUALIFIED);
}
public function shouldSendDiscordMessage(): bool
{
return true;
}
}