| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function __construct($attribs = [], $template = null, $show = false) { |
||
| 28 | if (empty($template)) { |
||
| 29 | $template = __DIR__ . self::DEFAULT_TEMPLATE; |
||
| 30 | } |
||
| 31 | |||
| 32 | if ($show) { |
||
| 33 | parent::__construct($attribs, $template); |
||
| 34 | } else { |
||
| 35 | $this->template = $template; |
||
| 36 | $this->setAttributes($attribs); |
||
| 37 | } |
||
| 38 | } |
||
| 39 | } |
||
| 40 |