Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
CustomersNewest.php
Go to the documentation of this file.
1 <?php
8 
10 {
16  public function execute()
17  {
18  $output = $this->layoutFactory->create()
19  ->createBlock(\Magento\Backend\Block\Dashboard\Tab\Customers\Newest::class)
20  ->toHtml();
21  $resultRaw = $this->resultRawFactory->create();
22  return $resultRaw->setContents($output);
23  }
24 }