for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Soluble\MediaTools\Video;
use Psr\Container\ContainerInterface;
use Soluble\MediaTools\Config\FFMpegConfig;
class DetectionServiceFactory
{
public function __invoke(ContainerInterface $container): DetectionServiceInterface
return new DetectionService(
$container->get(FFMpegConfig::class)
);
}