for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Lichtenwallner (https://lichtenwallner.at)
*
* @see https://github.com/jolicht/markdown-cms for the canonical source repository
* @license https://github.com/jolicht/markdown-cms/blob/master/LICENSE MIT
* @copyright Copyright (c) Johannes Lichtenwallner
*/
declare(strict_types = 1);
namespace Jolicht\MarkdownCms\ContentType;
abstract class AbstractContentTypeCreator
{
* Default template
* @var string
private $defaultTemplate;
* Constructor
* @param string $defaultTemplate
public function __construct(string $defaultTemplate)
$this->defaultTemplate = $defaultTemplate;
}
* Get default template
* @return string
public function getDefaultTemplate() : string
return $this->defaultTemplate;