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

33 lines
756 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;
}
protected function getDiscordMessageDescription(): string
{
return "{$this->privateLabel($this->getModel())} '**{$this->getModel()->getName()}**' has been created.";
}
}