for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mathielen\ReportWriteEngine\Engine;
use Assert\Assertion;
class ReportConfig
{
private $id;
private $templateId;
public function __construct($templateId, $id)
Assertion::notEmpty($templateId);
Assertion::string($id);
$this->id = $id;
$this->templateId = $templateId;
}
/**
* @return string
*/
public function getId()
return $this->id;
public function getTemplateId()
return $this->templateId;