|
12 | 12 |
|
13 | 13 | namespace PHPCR\Shell\DependencyInjection;
|
14 | 14 |
|
15 |
| -use PHPCR\Shell\PhpcrShell; |
16 |
| -use Symfony\Component\DependencyInjection\ContainerBuilder; |
17 |
| -use Symfony\Component\DependencyInjection\Reference; |
18 |
| -use PHPCR\Shell\Transport\Transport\DoctrineDbal; |
19 |
| -use PHPCR\Shell\Transport\Transport\Jackrabbit; |
20 |
| -use PHPCR\Shell\Transport\Transport\JackalopeFs; |
21 |
| -use PHPCR\Shell\Query\UpdateProcessor; |
22 |
| -use Symfony\Component\ExpressionLanguage\ExpressionLanguage; |
23 |
| -use PHPCR\Shell\Console\Input\AutoComplete; |
| 15 | +use DTL\Glob\GlobHelper; |
| 16 | +use PHPCR\Shell\Config\Config; |
| 17 | +use PHPCR\Shell\Config\ConfigManager; |
| 18 | +use PHPCR\Shell\Config\Profile; |
| 19 | +use PHPCR\Shell\Config\ProfileLoader; |
24 | 20 | use PHPCR\Shell\Console\Application\EmbeddedApplication;
|
25 | 21 | use PHPCR\Shell\Console\Application\ShellApplication;
|
26 |
| -use Symfony\Component\EventDispatcher\EventDispatcher; |
27 |
| -use PHPCR\Shell\Subscriber\ExceptionSubscriber; |
| 22 | +use PHPCR\Shell\Console\Helper\EditorHelper; |
| 23 | +use PHPCR\Shell\Console\Helper\NodeHelper; |
| 24 | +use PHPCR\Shell\Console\Helper\PathHelper; |
| 25 | +use PHPCR\Shell\Console\Helper\RepositoryHelper; |
| 26 | +use PHPCR\Shell\Console\Helper\ResultFormatterHelper; |
| 27 | +use PHPCR\Shell\Console\Helper\TextHelper; |
| 28 | +use PHPCR\Shell\Console\Input\AutoComplete; |
| 29 | +use PHPCR\Shell\Phpcr\SessionManager; |
| 30 | +use PHPCR\Shell\PhpcrShell; |
| 31 | +use PHPCR\Shell\Query\UpdateProcessor; |
28 | 32 | use PHPCR\Shell\Subscriber\AliasSubscriber;
|
29 | 33 | use PHPCR\Shell\Subscriber\ConfigInitSubscriber;
|
30 |
| -use PHPCR\Shell\Subscriber\ProfileWriterSubscriber; |
31 |
| -use PHPCR\Shell\Subscriber\ProfileLoaderSubscriber; |
| 34 | +use PHPCR\Shell\Subscriber\ExceptionSubscriber; |
32 | 35 | use PHPCR\Shell\Subscriber\ProfileFromSessionInputSubscriber;
|
33 |
| -use DTL\Glob\GlobHelper; |
34 |
| -use PHPCR\Shell\Phpcr\SessionManager; |
| 36 | +use PHPCR\Shell\Subscriber\ProfileLoaderSubscriber; |
| 37 | +use PHPCR\Shell\Subscriber\ProfileWriterSubscriber; |
| 38 | +use PHPCR\Shell\Transport\Transport\DoctrineDbal; |
| 39 | +use PHPCR\Shell\Transport\Transport\JackalopeFs; |
| 40 | +use PHPCR\Shell\Transport\Transport\Jackrabbit; |
35 | 41 | use PHPCR\Shell\Transport\TransportRegistry;
|
36 |
| -use PHPCR\Shell\Config\Config; |
37 |
| -use PHPCR\Shell\Config\ProfileLoader; |
38 |
| -use PHPCR\Shell\Config\Profile; |
39 |
| -use PHPCR\Shell\Config\ConfigManager; |
40 |
| -use PHPCR\Shell\Console\Helper\ResultFormatterHelper; |
41 |
| -use PHPCR\Shell\Console\Helper\NodeHelper; |
42 |
| -use PHPCR\Shell\Console\Helper\TextHelper; |
43 |
| -use PHPCR\Shell\Console\Helper\RepositoryHelper; |
44 |
| -use PHPCR\Shell\Console\Helper\PathHelper; |
45 |
| -use PHPCR\Shell\Console\Helper\EditorHelper; |
46 | 42 | use Symfony\Component\Console\Helper\QuestionHelper;
|
| 43 | +use Symfony\Component\DependencyInjection\ContainerBuilder; |
| 44 | +use Symfony\Component\DependencyInjection\Reference; |
| 45 | +use Symfony\Component\EventDispatcher\EventDispatcher; |
| 46 | +use Symfony\Component\ExpressionLanguage\ExpressionLanguage; |
47 | 47 |
|
48 | 48 | class Container extends ContainerBuilder
|
49 | 49 | {
|
|
0 commit comments