Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
2 / 2 |
Alerts | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
<?php | |
namespace Win\Templates; | |
use Win\Services\Alert; | |
/** | |
* Exibe os Alertas da sessão | |
*/ | |
class Alerts extends Template | |
{ | |
public function __construct($alerts = null) | |
{ | |
parent::__construct('layout/alerts', ['alerts' => $alerts ?? Alert::popAll()]); | |
} | |
} |