for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EnergieProduction\Chart\Renderable;
use EnergieProduction\Chart\Contracts\Renderable;
class Render implements Renderable {
/**
* [handle description]
* @param string $key
* @param mixed $content
* @return array
*/
public function handle($key, $content)
{
return [$key => $content];
}