for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Newsletter;
use Symfony\Component\Templating\EngineInterface;
/**
* Dummy Newsletter manager class
*/
class Manager
{
private $templating;
public function __construct(EngineInterface $templating = null)
$this->templating = $templating;
}
public function getTemplating()
return $this->templating;