for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Locastic\SymfonyTranslationBundle\Factory;
use Locastic\SymfonyTranslationBundle\Model\Theme;
use Locastic\SymfonyTranslationBundle\Model\ThemeInterface;
final class ThemeFactory implements ThemeFactoryInterface
{
public function createNew(string $name, string $path): ThemeInterface
return new Theme($name, $path);
}