mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
16 lines
409 B
PHP
16 lines
409 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\MediaInformation;
|
|
|
|
use App\Http\Controllers\API\Controller as BaseController;
|
|
use App\Services\MediaInformationService;
|
|
|
|
class Controller extends BaseController
|
|
{
|
|
protected $mediaInformationService;
|
|
|
|
public function __construct(MediaInformationService $mediaInformationService)
|
|
{
|
|
$this->mediaInformationService = $mediaInformationService;
|
|
}
|
|
}
|