Hacklang 意外接口错误

Hacklang unexpected interface error

我正在学习 hacklang,但在不同文件中使用界面时遇到问题。 这是我的代码。

IpAuthorizedController.php

<?hh
namespace App\Controller\Interface;

interface IpAuthorizedController {

}

HomeController.php

<?hh
namespace App\controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use App\Controller\Interface\IpAuthorizedController;

class HomeController extends Controller
{
  /**
   * @Route("/", name="index")
   *
   */
  public function index()
  {
    die(var_dump(return $this->render('index.html.twig')));
  }
}

错误信息

FatalThrowableError

syntax error, unexpected T_INTERFACE, expecting '{'
in HomeController.hh (line 5)

我是这门语言的新手,非常感谢任何帮助,谢谢。

"Interface" 是一个 reserved word,不能用作命名空间。