1 | <?php |
||
14 | class Container extends BaseContainer implements LaravelApplication |
||
15 | { |
||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | public function version() |
||
23 | |||
24 | /** |
||
25 | * Get the base path of the Laravel installation. |
||
26 | * |
||
27 | * @param string $path |
||
28 | * @return string |
||
29 | */ |
||
30 | public function basePath($path = '') |
||
34 | |||
35 | /** |
||
36 | * Get the path to the application configuration files. |
||
37 | * |
||
38 | * @param string $path |
||
39 | * @return string |
||
40 | */ |
||
41 | public function configPath($path = '') |
||
45 | |||
46 | /** |
||
47 | * Get the path to the database directory. |
||
48 | * |
||
49 | * @param string $path |
||
50 | * @return string |
||
51 | */ |
||
52 | public function databasePath($path = '') |
||
56 | |||
57 | /** |
||
58 | * Get the path to the language files. |
||
59 | * |
||
60 | * @return string |
||
61 | */ |
||
62 | public function langPath() |
||
66 | |||
67 | /** |
||
68 | * Get the path to the resources directory. |
||
69 | * |
||
70 | * @param string $path |
||
71 | * @return string |
||
72 | */ |
||
73 | public function resourcePath($path = '') |
||
77 | |||
78 | /** |
||
79 | * Get the path to the storage directory. |
||
80 | * |
||
81 | * @return string |
||
82 | */ |
||
83 | public function storagePath() |
||
87 | |||
88 | /** |
||
89 | * {@inheritdoc} |
||
90 | */ |
||
91 | public function environment() |
||
95 | |||
96 | /** |
||
97 | * {@inheritdoc} |
||
98 | */ |
||
99 | public function runningInConsole() |
||
103 | |||
104 | /** |
||
105 | * {@inheritdoc} |
||
106 | */ |
||
107 | public function getNamespace() |
||
111 | |||
112 | /** |
||
113 | * {@inheritdoc} |
||
114 | */ |
||
115 | public function isDownForMaintenance() |
||
119 | |||
120 | /** |
||
121 | * {@inheritdoc} |
||
122 | */ |
||
123 | public function registerConfiguredProviders() |
||
127 | |||
128 | /** |
||
129 | * {@inheritdoc} |
||
130 | */ |
||
131 | public function register($provider, $options = [], $force = false) |
||
135 | |||
136 | /** |
||
137 | * {@inheritdoc} |
||
138 | */ |
||
139 | public function registerDeferredProvider($provider, $service = null) |
||
143 | |||
144 | /** |
||
145 | * {@inheritdoc} |
||
146 | */ |
||
147 | public function boot() |
||
151 | |||
152 | /** |
||
153 | * {@inheritdoc} |
||
154 | */ |
||
155 | public function booting($callback) |
||
159 | |||
160 | /** |
||
161 | * {@inheritdoc} |
||
162 | */ |
||
163 | public function booted($callback) |
||
167 | |||
168 | /** |
||
169 | * {@inheritdoc} |
||
170 | */ |
||
171 | public function getCachedServicesPath() |
||
175 | |||
176 | /** |
||
177 | * {@inheritdoc} |
||
178 | */ |
||
179 | public function getCachedPackagesPath() |
||
183 | } |
||
184 |