for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amarkal\Shortcode;
class Popup
{
private $fields = array();
public function __construct($fields)
$this->fields = $fields;
}
public function render()
ob_start();
include 'Popup.phtml';
return ob_get_clean();