在第6行显示语法错误unexpected ' public' (T_STRING), expecting function (T_FUNCTION)
但是我没有发现任何错误。
class Index extends \Magento\Framework\App\Action\Action
{
public function __construct(\Magento\Framework\App\Action\Context $context)
{
return parent::__construct($context);
}
public function execute()
{
echo 'Hello Magento 2! We will change the world!';
exit;
}
}