for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Locastic\SymfonyTranslationBundle\Model;
class Theme implements ThemeInterface
{
protected string $name;
protected string $path;
public function __construct(string $name, string $path)
$this->name = $name;
$this->path = $path;
}
public function getName(): string
return $this->name;
public function setName(string $name): void
public function getPath(): string
return $this->path;
public function setPath(string $path): void