for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hshn\AngularBundle\TemplateCache;
class Configuration implements ConfigurationInterface
{
/**
* @var string
*/
private $name;
* @var bool
private $create;
* @var string[]
private $targets;
* {@inheritdoc}
public function setName($name)
$this->name = $name;
}
public function getName()
return $this->name ?: $this->name;
public function setTargets(array $targets)
$this->targets = $targets;
public function getTargets()
return $this->targets;
* @return boolean
public function getCreate()
return $this->create;
* @param boolean $create
public function setCreate($create)
$this->create = $create;