for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheCodingMachine\CMS\Theme;
class TwigThemeDescriptor implements ThemeDescriptorInterface
{
/**
* @var string
*/
private $template;
public function __construct(string $template)
$this->template = $template;
}
* @return string
public function getTemplate(): string
return $this->template;