mirror of
https://github.com/koel/koel
synced 2024-12-23 11:03:05 +00:00
17 lines
409 B
PHP
17 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;
|
||
|
}
|
||
|
}
|