View difference between Paste ID: KX9bSJaV and bt4uFpsv
SHOW: | | - or go back to the newest paste.
1
use Symfony\Component\Console {
2
  Helper\Table,
3
  Input { ArrayInput, InputInterface }
4
  Output { NullOutput, OutputInterface },
5
  Question { Question, ChoiceQuestion, ConfirmationQuestion }
6
};
7
8
Could you do the following?
9
10-
use \ {
10+
use \ { //with or without the slash
11
    Symfony\Component\Console {
12
        Helper\Table,
13
        Input { ArrayInput, InputInterface }
14
  	Output { NullOutput, OutputInterface },
15
	Question { Question, ChoiceQuestion, ConfirmationQuestion }
16
    }
17
}