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;
それらを1つのファイルで定義し、アプリ全体のすべてのコントローラーで使用される方法はありますか?