Files
animethemes-server/app/Events/Base/Admin/AdminCreatedEvent.php
T

42 lines
857 B
PHP

<?php
declare(strict_types=1);
namespace App\Events\Base\Admin;
use App\Constants\Config\ServiceConstants;
use App\Events\Base\BaseCreatedEvent;
use Illuminate\Support\Facades\Config;
/**
* Class AdminCreatedEvent.
*
* @template TModel of \App\Models\BaseModel
*
* @extends BaseCreatedEvent<TModel>
*/
abstract class AdminCreatedEvent extends BaseCreatedEvent
{
/**
* Get Discord channel the message will be sent to.
*
* @return string
*/
public function getDiscordChannel(): string
{
return Config::get(ServiceConstants::ADMIN_DISCORD_CHANNEL_QUALIFIED);
}
/**
* Determine if the message should be sent.
*
* @return bool
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function shouldSendDiscordMessage(): bool
{
return true;
}
}