for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Structural\Decorator;
class Decorator
{
protected $origin;
public function __construct(TemplatingInterface $templating)
$this->origin = $templating;
}