use statements
当我必须在所有文件中使用一些类似的东西时,我觉得很烦人 。
时不时地,我必须在所有控制器上复制非常常见的行,例如
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
有什么方法可以将它们定义在一个文件中,并且它们将被我的整个应用程序中的所有控制器使用。