for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Win\Templates;
use Win\Services\Alert;
/**
* Exibe os Alertas da sessão
*/
class AlertBlock extends Template
{
public function __construct($alerts = null)
parent::__construct('layout/alerts', ['alerts' => $alerts ?? Alert::popAll()]);
}