mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
24 lines
427 B
PHP
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;
|
|
}
|
|
}
|