1 | <?php |
||
32 | class DependencyInjectionKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * This is a utility class, so protect it against direct |
||
37 | * instantiation. |
||
38 | */ |
||
39 | private function __construct() |
||
42 | |||
43 | /** |
||
44 | * This is a utility class, so protect it against cloning. |
||
45 | * |
||
46 | * @return void |
||
47 | */ |
||
48 | private function __clone() |
||
51 | |||
52 | /** |
||
53 | * The key for the input instance. |
||
54 | * |
||
55 | * @var string |
||
56 | */ |
||
57 | const INPUT = 'import_cli_simple.input'; |
||
58 | |||
59 | /** |
||
60 | * The key for the application instance. |
||
61 | * |
||
62 | * @var string |
||
63 | */ |
||
64 | const APPLICATION = 'import_cli_simple.application'; |
||
65 | |||
66 | /** |
||
67 | * The key for the vendor directory. |
||
68 | * |
||
69 | * @var string |
||
70 | */ |
||
71 | const CONFIGURATION_VENDOR_DIR = 'import_cli_simple.configuration.vendor.dir'; |
||
72 | |||
73 | /** |
||
74 | * The key for the configuration loader. |
||
75 | * |
||
76 | * @var string |
||
77 | */ |
||
78 | const CONFIGURATION_LOADER = 'import_cli_simple.configuration.loader'; |
||
79 | } |
||
80 |