1
0
Fork 0
mirror of synced 2025-03-29 11:19:55 +03:00
magento-module/Block/Display.php
2018-03-12 16:34:48 +03:00

16 lines
326 B
PHP

<?php
namespace Retailcrm\Retailcrm\Block;
class Display extends \Magento\Framework\View\Element\Template
{
public function __construct(\Magento\Framework\View\Element\Template\Context $context)
{
parent::__construct($context);
}
public function sayHello()
{
return __('Hello World');
}
}