解析错误:语法错误,意外错误'公共' (T_STRING),期望第6行的功能(T_FUNCTION)

时间:2018-06-07 06:22:21

标签: php magento

在第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;
  }
}

0 个答案:

没有答案