for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Albert221\Blog\Widget;
class HTML implements WidgetInterface
{
private $name;
private $html;
public function __construct($name, $html)
$this->name = $name;
$this->html = $html;
}
public function getName()
return $this->name;
public function getHTML()
return $this->html;