mirror of
https://github.com/koel/koel
synced 2025-01-02 07:48:44 +00:00
13 lines
197 B
PHP
13 lines
197 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Album;
|
|
|
|
class AlbumRepository extends AbstractRepository
|
|
{
|
|
public function getModelClass(): string
|
|
{
|
|
return Album::class;
|
|
}
|
|
}
|