for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\DefaultPhpRepository\Model;
/**
* Class Template
*/
class Template
{
/** @var string */
private $id;
private $target;
private $source;
private $namespace = null;
* @param string $id
* @param string $source
* @param string $target
public function __construct($id, $source, $target)
$this->id = $id;
$this->source = $source;
$this->target = $target;
}
* @param string $namespace
*
* @return Template
public function setNamespace($namespace)
$this->namespace = $namespace;
return $this;
* @return string
public function getId()
return $this->id;
public function getTarget()
return $this->target;
public function getSource()
return $this->source;
public function getNamespace()
return $this->namespace;