mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 04:05:07 +02:00
* 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
27 lines
521 B
PHP
27 lines
521 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions\Repositories\Wiki\Video\Script;
|
|
|
|
use App\Actions\Repositories\ReconcileResults;
|
|
use App\Models\Wiki\Video\VideoScript;
|
|
|
|
/**
|
|
* Class ReconcileScriptResults.
|
|
*
|
|
* @extends ReconcileResults<VideoScript>
|
|
*/
|
|
class ReconcileScriptResults extends ReconcileResults
|
|
{
|
|
/**
|
|
* Get the model of the reconciliation results.
|
|
*
|
|
* @return class-string<VideoScript>
|
|
*/
|
|
protected function model(): string
|
|
{
|
|
return VideoScript::class;
|
|
}
|
|
}
|