Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BrokenConstructor.php
Go to the documentation of this file.
1 <?php
7 
10 
12 {
16  public function __construct()
17  {
18  throw new LocalizedException(new Phrase('Construction problem.'));
19  }
20 
26  public function toHtml()
27  {
28  return '<p>Rendered with construction problem.</p>';
29  }
30 }