for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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;
}