for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Asmaster\EquipTwig;
use Equip\Payload;
class TemplatePayload extends Payload
{
/**
* @var string
*/
private $template;
* @param string $template
public function withTemplate($template)
$copy = clone $this;
$copy->template = $template;
return $copy;
}
* @return string $template
public function getTemplate()
return $this->template;