Files
animethemes-server/app/Events/Wiki/Video/Script/VideoScriptCreated.php
T
paranarimasuandGitHub 8b6b196c99 feat(admin): migrate db dumps from github to platform (#465)
* feat: migrate encoding scripts from github to platform

* style: fix StyleCI finding

* fix: don't concatenate updated videos when attempting to attach entry on video upload

* fix(api): fix field dependencies & feat(admin): upload script from video detail screen
2022-09-24 00:01:37 -05:00

47 lines
935 B
PHP

<?php
declare(strict_types=1);
namespace App\Events\Wiki\Video\Script;
use App\Events\Base\Wiki\WikiCreatedEvent;
use App\Models\Wiki\Video\VideoScript;
/**
* Class VideoScriptCreated.
*
* @extends WikiCreatedEvent<VideoScript>
*/
class VideoScriptCreated extends WikiCreatedEvent
{
/**
* Create a new event instance.
*
* @param VideoScript $script
*/
public function __construct(VideoScript $script)
{
parent::__construct($script);
}
/**
* Get the model that has fired this event.
*
* @return VideoScript
*/
public function getModel(): VideoScript
{
return $this->model;
}
/**
* Get the description for the Discord message payload.
*
* @return string
*/
protected function getDiscordMessageDescription(): string
{
return "Script '**{$this->getModel()->getName()}**' has been created.";
}
}