for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author @jenschude <[email protected]>
*/
namespace JaySDe\HandlebarsBundle\Helper;
class JsonHelper implements HelperInterface
{
public function handle($context, $options)
return json_encode($context);
}