Files
animethemes-server/app/Models/List/Playlist/ForwardPlaylistTrack.php
T

24 lines
427 B
PHP

<?php
declare(strict_types=1);
namespace App\Models\List\Playlist;
/**
* Class ForwardPlaylistTrack.
*/
class ForwardPlaylistTrack extends PlaylistTrack
{
/**
* Get the name of the parent key column.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function getParentKeyName(): string
{
return PlaylistTrack::ATTRIBUTE_PREVIOUS;
}
}