@@ -6,6 +6,9 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
8 | 8 | { |
9 | + /** |
|
10 | + * @return callable |
|
11 | + */ |
|
9 | 12 | public static function getInitializer(ClassLoader $loader) |
10 | 13 | { |
11 | 14 | return \Closure::bind(function () use ($loader) { |
@@ -6,10 +6,10 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
8 | 8 | { |
9 | - public static function getInitializer(ClassLoader $loader) |
|
10 | - { |
|
11 | - return \Closure::bind(function () use ($loader) { |
|
9 | + public static function getInitializer(ClassLoader $loader) |
|
10 | + { |
|
11 | + return \Closure::bind(function () use ($loader) { |
|
12 | 12 | |
13 | - }, null, ClassLoader::class); |
|
14 | - } |
|
13 | + }, null, ClassLoader::class); |
|
14 | + } |
|
15 | 15 | } |
@@ -8,7 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | public static function getInitializer(ClassLoader $loader) |
10 | 10 | { |
11 | - return \Closure::bind(function () use ($loader) { |
|
11 | + return \Closure::bind(function() use ($loader) { |
|
12 | 12 | |
13 | 13 | }, null, ClassLoader::class); |
14 | 14 | } |
@@ -4,10 +4,8 @@ |
||
4 | 4 | |
5 | 5 | namespace Composer\Autoload; |
6 | 6 | |
7 | -class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
|
8 | -{ |
|
9 | - public static function getInitializer(ClassLoader $loader) |
|
10 | - { |
|
7 | +class ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211 { |
|
8 | + public static function getInitializer(ClassLoader $loader) { |
|
11 | 9 | return \Closure::bind(function () use ($loader) { |
12 | 10 | |
13 | 11 | }, null, ClassLoader::class); |
@@ -10,6 +10,6 @@ |
||
10 | 10 | { |
11 | 11 | return \Closure::bind(function () use ($loader) { |
12 | 12 | |
13 | - }, null, ClassLoader::class); |
|
13 | + }, NULL, ClassLoader::class); |
|
14 | 14 | } |
15 | 15 | } |
@@ -367,6 +367,10 @@ |
||
367 | 367 | return $file; |
368 | 368 | } |
369 | 369 | |
370 | + /** |
|
371 | + * @param string $class |
|
372 | + * @param string $ext |
|
373 | + */ |
|
370 | 374 | private function findFileWithExtension($class, $ext) |
371 | 375 | { |
372 | 376 | // PSR-4 lookup |
@@ -42,396 +42,396 @@ discard block |
||
42 | 42 | */ |
43 | 43 | class ClassLoader |
44 | 44 | { |
45 | - // PSR-4 |
|
46 | - private $prefixLengthsPsr4 = array(); |
|
47 | - private $prefixDirsPsr4 = array(); |
|
48 | - private $fallbackDirsPsr4 = array(); |
|
49 | - |
|
50 | - // PSR-0 |
|
51 | - private $prefixesPsr0 = array(); |
|
52 | - private $fallbackDirsPsr0 = array(); |
|
53 | - |
|
54 | - private $useIncludePath = false; |
|
55 | - private $classMap = array(); |
|
56 | - private $classMapAuthoritative = false; |
|
57 | - private $missingClasses = array(); |
|
58 | - private $apcuPrefix; |
|
59 | - |
|
60 | - public function getPrefixes() |
|
61 | - { |
|
62 | - if (!empty($this->prefixesPsr0)) { |
|
63 | - return call_user_func_array('array_merge', $this->prefixesPsr0); |
|
64 | - } |
|
65 | - |
|
66 | - return array(); |
|
67 | - } |
|
68 | - |
|
69 | - public function getPrefixesPsr4() |
|
70 | - { |
|
71 | - return $this->prefixDirsPsr4; |
|
72 | - } |
|
73 | - |
|
74 | - public function getFallbackDirs() |
|
75 | - { |
|
76 | - return $this->fallbackDirsPsr0; |
|
77 | - } |
|
78 | - |
|
79 | - public function getFallbackDirsPsr4() |
|
80 | - { |
|
81 | - return $this->fallbackDirsPsr4; |
|
82 | - } |
|
83 | - |
|
84 | - public function getClassMap() |
|
85 | - { |
|
86 | - return $this->classMap; |
|
87 | - } |
|
88 | - |
|
89 | - /** |
|
90 | - * @param array $classMap Class to filename map |
|
91 | - */ |
|
92 | - public function addClassMap(array $classMap) |
|
93 | - { |
|
94 | - if ($this->classMap) { |
|
95 | - $this->classMap = array_merge($this->classMap, $classMap); |
|
96 | - } else { |
|
97 | - $this->classMap = $classMap; |
|
98 | - } |
|
99 | - } |
|
100 | - |
|
101 | - /** |
|
102 | - * Registers a set of PSR-0 directories for a given prefix, either |
|
103 | - * appending or prepending to the ones previously set for this prefix. |
|
104 | - * |
|
105 | - * @param string $prefix The prefix |
|
106 | - * @param array|string $paths The PSR-0 root directories |
|
107 | - * @param bool $prepend Whether to prepend the directories |
|
108 | - */ |
|
109 | - public function add($prefix, $paths, $prepend = false) |
|
110 | - { |
|
111 | - if (!$prefix) { |
|
112 | - if ($prepend) { |
|
113 | - $this->fallbackDirsPsr0 = array_merge( |
|
114 | - (array) $paths, |
|
115 | - $this->fallbackDirsPsr0 |
|
116 | - ); |
|
117 | - } else { |
|
118 | - $this->fallbackDirsPsr0 = array_merge( |
|
119 | - $this->fallbackDirsPsr0, |
|
120 | - (array) $paths |
|
121 | - ); |
|
122 | - } |
|
123 | - |
|
124 | - return; |
|
125 | - } |
|
126 | - |
|
127 | - $first = $prefix[0]; |
|
128 | - if (!isset($this->prefixesPsr0[$first][$prefix])) { |
|
129 | - $this->prefixesPsr0[$first][$prefix] = (array) $paths; |
|
130 | - |
|
131 | - return; |
|
132 | - } |
|
133 | - if ($prepend) { |
|
134 | - $this->prefixesPsr0[$first][$prefix] = array_merge( |
|
135 | - (array) $paths, |
|
136 | - $this->prefixesPsr0[$first][$prefix] |
|
137 | - ); |
|
138 | - } else { |
|
139 | - $this->prefixesPsr0[$first][$prefix] = array_merge( |
|
140 | - $this->prefixesPsr0[$first][$prefix], |
|
141 | - (array) $paths |
|
142 | - ); |
|
143 | - } |
|
144 | - } |
|
145 | - |
|
146 | - /** |
|
147 | - * Registers a set of PSR-4 directories for a given namespace, either |
|
148 | - * appending or prepending to the ones previously set for this namespace. |
|
149 | - * |
|
150 | - * @param string $prefix The prefix/namespace, with trailing '\\' |
|
151 | - * @param array|string $paths The PSR-4 base directories |
|
152 | - * @param bool $prepend Whether to prepend the directories |
|
153 | - * |
|
154 | - * @throws \InvalidArgumentException |
|
155 | - */ |
|
156 | - public function addPsr4($prefix, $paths, $prepend = false) |
|
157 | - { |
|
158 | - if (!$prefix) { |
|
159 | - // Register directories for the root namespace. |
|
160 | - if ($prepend) { |
|
161 | - $this->fallbackDirsPsr4 = array_merge( |
|
162 | - (array) $paths, |
|
163 | - $this->fallbackDirsPsr4 |
|
164 | - ); |
|
165 | - } else { |
|
166 | - $this->fallbackDirsPsr4 = array_merge( |
|
167 | - $this->fallbackDirsPsr4, |
|
168 | - (array) $paths |
|
169 | - ); |
|
170 | - } |
|
171 | - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
|
172 | - // Register directories for a new namespace. |
|
173 | - $length = strlen($prefix); |
|
174 | - if ('\\' !== $prefix[$length - 1]) { |
|
175 | - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
|
176 | - } |
|
177 | - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
|
178 | - $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
179 | - } elseif ($prepend) { |
|
180 | - // Prepend directories for an already registered namespace. |
|
181 | - $this->prefixDirsPsr4[$prefix] = array_merge( |
|
182 | - (array) $paths, |
|
183 | - $this->prefixDirsPsr4[$prefix] |
|
184 | - ); |
|
185 | - } else { |
|
186 | - // Append directories for an already registered namespace. |
|
187 | - $this->prefixDirsPsr4[$prefix] = array_merge( |
|
188 | - $this->prefixDirsPsr4[$prefix], |
|
189 | - (array) $paths |
|
190 | - ); |
|
191 | - } |
|
192 | - } |
|
193 | - |
|
194 | - /** |
|
195 | - * Registers a set of PSR-0 directories for a given prefix, |
|
196 | - * replacing any others previously set for this prefix. |
|
197 | - * |
|
198 | - * @param string $prefix The prefix |
|
199 | - * @param array|string $paths The PSR-0 base directories |
|
200 | - */ |
|
201 | - public function set($prefix, $paths) |
|
202 | - { |
|
203 | - if (!$prefix) { |
|
204 | - $this->fallbackDirsPsr0 = (array) $paths; |
|
205 | - } else { |
|
206 | - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
|
207 | - } |
|
208 | - } |
|
209 | - |
|
210 | - /** |
|
211 | - * Registers a set of PSR-4 directories for a given namespace, |
|
212 | - * replacing any others previously set for this namespace. |
|
213 | - * |
|
214 | - * @param string $prefix The prefix/namespace, with trailing '\\' |
|
215 | - * @param array|string $paths The PSR-4 base directories |
|
216 | - * |
|
217 | - * @throws \InvalidArgumentException |
|
218 | - */ |
|
219 | - public function setPsr4($prefix, $paths) |
|
220 | - { |
|
221 | - if (!$prefix) { |
|
222 | - $this->fallbackDirsPsr4 = (array) $paths; |
|
223 | - } else { |
|
224 | - $length = strlen($prefix); |
|
225 | - if ('\\' !== $prefix[$length - 1]) { |
|
226 | - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
|
227 | - } |
|
228 | - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
|
229 | - $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
230 | - } |
|
231 | - } |
|
232 | - |
|
233 | - /** |
|
234 | - * Turns on searching the include path for class files. |
|
235 | - * |
|
236 | - * @param bool $useIncludePath |
|
237 | - */ |
|
238 | - public function setUseIncludePath($useIncludePath) |
|
239 | - { |
|
240 | - $this->useIncludePath = $useIncludePath; |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Can be used to check if the autoloader uses the include path to check |
|
245 | - * for classes. |
|
246 | - * |
|
247 | - * @return bool |
|
248 | - */ |
|
249 | - public function getUseIncludePath() |
|
250 | - { |
|
251 | - return $this->useIncludePath; |
|
252 | - } |
|
253 | - |
|
254 | - /** |
|
255 | - * Turns off searching the prefix and fallback directories for classes |
|
256 | - * that have not been registered with the class map. |
|
257 | - * |
|
258 | - * @param bool $classMapAuthoritative |
|
259 | - */ |
|
260 | - public function setClassMapAuthoritative($classMapAuthoritative) |
|
261 | - { |
|
262 | - $this->classMapAuthoritative = $classMapAuthoritative; |
|
263 | - } |
|
264 | - |
|
265 | - /** |
|
266 | - * Should class lookup fail if not found in the current class map? |
|
267 | - * |
|
268 | - * @return bool |
|
269 | - */ |
|
270 | - public function isClassMapAuthoritative() |
|
271 | - { |
|
272 | - return $this->classMapAuthoritative; |
|
273 | - } |
|
274 | - |
|
275 | - /** |
|
276 | - * APCu prefix to use to cache found/not-found classes, if the extension is enabled. |
|
277 | - * |
|
278 | - * @param string|null $apcuPrefix |
|
279 | - */ |
|
280 | - public function setApcuPrefix($apcuPrefix) |
|
281 | - { |
|
282 | - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; |
|
283 | - } |
|
284 | - |
|
285 | - /** |
|
286 | - * The APCu prefix in use, or null if APCu caching is not enabled. |
|
287 | - * |
|
288 | - * @return string|null |
|
289 | - */ |
|
290 | - public function getApcuPrefix() |
|
291 | - { |
|
292 | - return $this->apcuPrefix; |
|
293 | - } |
|
294 | - |
|
295 | - /** |
|
296 | - * Registers this instance as an autoloader. |
|
297 | - * |
|
298 | - * @param bool $prepend Whether to prepend the autoloader or not |
|
299 | - */ |
|
300 | - public function register($prepend = false) |
|
301 | - { |
|
302 | - spl_autoload_register(array($this, 'loadClass'), true, $prepend); |
|
303 | - } |
|
304 | - |
|
305 | - /** |
|
306 | - * Unregisters this instance as an autoloader. |
|
307 | - */ |
|
308 | - public function unregister() |
|
309 | - { |
|
310 | - spl_autoload_unregister(array($this, 'loadClass')); |
|
311 | - } |
|
312 | - |
|
313 | - /** |
|
314 | - * Loads the given class or interface. |
|
315 | - * |
|
316 | - * @param string $class The name of the class |
|
317 | - * @return bool|null True if loaded, null otherwise |
|
318 | - */ |
|
319 | - public function loadClass($class) |
|
320 | - { |
|
321 | - if ($file = $this->findFile($class)) { |
|
322 | - includeFile($file); |
|
323 | - |
|
324 | - return true; |
|
325 | - } |
|
326 | - } |
|
327 | - |
|
328 | - /** |
|
329 | - * Finds the path to the file where the class is defined. |
|
330 | - * |
|
331 | - * @param string $class The name of the class |
|
332 | - * |
|
333 | - * @return string|false The path if found, false otherwise |
|
334 | - */ |
|
335 | - public function findFile($class) |
|
336 | - { |
|
337 | - // class map lookup |
|
338 | - if (isset($this->classMap[$class])) { |
|
339 | - return $this->classMap[$class]; |
|
340 | - } |
|
341 | - if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { |
|
342 | - return false; |
|
343 | - } |
|
344 | - if (null !== $this->apcuPrefix) { |
|
345 | - $file = apcu_fetch($this->apcuPrefix.$class, $hit); |
|
346 | - if ($hit) { |
|
347 | - return $file; |
|
348 | - } |
|
349 | - } |
|
350 | - |
|
351 | - $file = $this->findFileWithExtension($class, '.php'); |
|
352 | - |
|
353 | - // Search for Hack files if we are running on HHVM |
|
354 | - if (false === $file && defined('HHVM_VERSION')) { |
|
355 | - $file = $this->findFileWithExtension($class, '.hh'); |
|
356 | - } |
|
357 | - |
|
358 | - if (null !== $this->apcuPrefix) { |
|
359 | - apcu_add($this->apcuPrefix.$class, $file); |
|
360 | - } |
|
361 | - |
|
362 | - if (false === $file) { |
|
363 | - // Remember that this class does not exist. |
|
364 | - $this->missingClasses[$class] = true; |
|
365 | - } |
|
366 | - |
|
367 | - return $file; |
|
368 | - } |
|
369 | - |
|
370 | - private function findFileWithExtension($class, $ext) |
|
371 | - { |
|
372 | - // PSR-4 lookup |
|
373 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
374 | - |
|
375 | - $first = $class[0]; |
|
376 | - if (isset($this->prefixLengthsPsr4[$first])) { |
|
377 | - $subPath = $class; |
|
378 | - while (false !== $lastPos = strrpos($subPath, '\\')) { |
|
379 | - $subPath = substr($subPath, 0, $lastPos); |
|
380 | - $search = $subPath.'\\'; |
|
381 | - if (isset($this->prefixDirsPsr4[$search])) { |
|
382 | - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
383 | - foreach ($this->prefixDirsPsr4[$search] as $dir) { |
|
384 | - if (file_exists($file = $dir . $pathEnd)) { |
|
385 | - return $file; |
|
386 | - } |
|
387 | - } |
|
388 | - } |
|
389 | - } |
|
390 | - } |
|
391 | - |
|
392 | - // PSR-4 fallback dirs |
|
393 | - foreach ($this->fallbackDirsPsr4 as $dir) { |
|
394 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
395 | - return $file; |
|
396 | - } |
|
397 | - } |
|
398 | - |
|
399 | - // PSR-0 lookup |
|
400 | - if (false !== $pos = strrpos($class, '\\')) { |
|
401 | - // namespaced class name |
|
402 | - $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) |
|
403 | - . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
|
404 | - } else { |
|
405 | - // PEAR-like class name |
|
406 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
407 | - } |
|
408 | - |
|
409 | - if (isset($this->prefixesPsr0[$first])) { |
|
410 | - foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
|
411 | - if (0 === strpos($class, $prefix)) { |
|
412 | - foreach ($dirs as $dir) { |
|
413 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
414 | - return $file; |
|
415 | - } |
|
416 | - } |
|
417 | - } |
|
418 | - } |
|
419 | - } |
|
420 | - |
|
421 | - // PSR-0 fallback dirs |
|
422 | - foreach ($this->fallbackDirsPsr0 as $dir) { |
|
423 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
424 | - return $file; |
|
425 | - } |
|
426 | - } |
|
427 | - |
|
428 | - // PSR-0 include paths. |
|
429 | - if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { |
|
430 | - return $file; |
|
431 | - } |
|
432 | - |
|
433 | - return false; |
|
434 | - } |
|
45 | + // PSR-4 |
|
46 | + private $prefixLengthsPsr4 = array(); |
|
47 | + private $prefixDirsPsr4 = array(); |
|
48 | + private $fallbackDirsPsr4 = array(); |
|
49 | + |
|
50 | + // PSR-0 |
|
51 | + private $prefixesPsr0 = array(); |
|
52 | + private $fallbackDirsPsr0 = array(); |
|
53 | + |
|
54 | + private $useIncludePath = false; |
|
55 | + private $classMap = array(); |
|
56 | + private $classMapAuthoritative = false; |
|
57 | + private $missingClasses = array(); |
|
58 | + private $apcuPrefix; |
|
59 | + |
|
60 | + public function getPrefixes() |
|
61 | + { |
|
62 | + if (!empty($this->prefixesPsr0)) { |
|
63 | + return call_user_func_array('array_merge', $this->prefixesPsr0); |
|
64 | + } |
|
65 | + |
|
66 | + return array(); |
|
67 | + } |
|
68 | + |
|
69 | + public function getPrefixesPsr4() |
|
70 | + { |
|
71 | + return $this->prefixDirsPsr4; |
|
72 | + } |
|
73 | + |
|
74 | + public function getFallbackDirs() |
|
75 | + { |
|
76 | + return $this->fallbackDirsPsr0; |
|
77 | + } |
|
78 | + |
|
79 | + public function getFallbackDirsPsr4() |
|
80 | + { |
|
81 | + return $this->fallbackDirsPsr4; |
|
82 | + } |
|
83 | + |
|
84 | + public function getClassMap() |
|
85 | + { |
|
86 | + return $this->classMap; |
|
87 | + } |
|
88 | + |
|
89 | + /** |
|
90 | + * @param array $classMap Class to filename map |
|
91 | + */ |
|
92 | + public function addClassMap(array $classMap) |
|
93 | + { |
|
94 | + if ($this->classMap) { |
|
95 | + $this->classMap = array_merge($this->classMap, $classMap); |
|
96 | + } else { |
|
97 | + $this->classMap = $classMap; |
|
98 | + } |
|
99 | + } |
|
100 | + |
|
101 | + /** |
|
102 | + * Registers a set of PSR-0 directories for a given prefix, either |
|
103 | + * appending or prepending to the ones previously set for this prefix. |
|
104 | + * |
|
105 | + * @param string $prefix The prefix |
|
106 | + * @param array|string $paths The PSR-0 root directories |
|
107 | + * @param bool $prepend Whether to prepend the directories |
|
108 | + */ |
|
109 | + public function add($prefix, $paths, $prepend = false) |
|
110 | + { |
|
111 | + if (!$prefix) { |
|
112 | + if ($prepend) { |
|
113 | + $this->fallbackDirsPsr0 = array_merge( |
|
114 | + (array) $paths, |
|
115 | + $this->fallbackDirsPsr0 |
|
116 | + ); |
|
117 | + } else { |
|
118 | + $this->fallbackDirsPsr0 = array_merge( |
|
119 | + $this->fallbackDirsPsr0, |
|
120 | + (array) $paths |
|
121 | + ); |
|
122 | + } |
|
123 | + |
|
124 | + return; |
|
125 | + } |
|
126 | + |
|
127 | + $first = $prefix[0]; |
|
128 | + if (!isset($this->prefixesPsr0[$first][$prefix])) { |
|
129 | + $this->prefixesPsr0[$first][$prefix] = (array) $paths; |
|
130 | + |
|
131 | + return; |
|
132 | + } |
|
133 | + if ($prepend) { |
|
134 | + $this->prefixesPsr0[$first][$prefix] = array_merge( |
|
135 | + (array) $paths, |
|
136 | + $this->prefixesPsr0[$first][$prefix] |
|
137 | + ); |
|
138 | + } else { |
|
139 | + $this->prefixesPsr0[$first][$prefix] = array_merge( |
|
140 | + $this->prefixesPsr0[$first][$prefix], |
|
141 | + (array) $paths |
|
142 | + ); |
|
143 | + } |
|
144 | + } |
|
145 | + |
|
146 | + /** |
|
147 | + * Registers a set of PSR-4 directories for a given namespace, either |
|
148 | + * appending or prepending to the ones previously set for this namespace. |
|
149 | + * |
|
150 | + * @param string $prefix The prefix/namespace, with trailing '\\' |
|
151 | + * @param array|string $paths The PSR-4 base directories |
|
152 | + * @param bool $prepend Whether to prepend the directories |
|
153 | + * |
|
154 | + * @throws \InvalidArgumentException |
|
155 | + */ |
|
156 | + public function addPsr4($prefix, $paths, $prepend = false) |
|
157 | + { |
|
158 | + if (!$prefix) { |
|
159 | + // Register directories for the root namespace. |
|
160 | + if ($prepend) { |
|
161 | + $this->fallbackDirsPsr4 = array_merge( |
|
162 | + (array) $paths, |
|
163 | + $this->fallbackDirsPsr4 |
|
164 | + ); |
|
165 | + } else { |
|
166 | + $this->fallbackDirsPsr4 = array_merge( |
|
167 | + $this->fallbackDirsPsr4, |
|
168 | + (array) $paths |
|
169 | + ); |
|
170 | + } |
|
171 | + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
|
172 | + // Register directories for a new namespace. |
|
173 | + $length = strlen($prefix); |
|
174 | + if ('\\' !== $prefix[$length - 1]) { |
|
175 | + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
|
176 | + } |
|
177 | + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
|
178 | + $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
179 | + } elseif ($prepend) { |
|
180 | + // Prepend directories for an already registered namespace. |
|
181 | + $this->prefixDirsPsr4[$prefix] = array_merge( |
|
182 | + (array) $paths, |
|
183 | + $this->prefixDirsPsr4[$prefix] |
|
184 | + ); |
|
185 | + } else { |
|
186 | + // Append directories for an already registered namespace. |
|
187 | + $this->prefixDirsPsr4[$prefix] = array_merge( |
|
188 | + $this->prefixDirsPsr4[$prefix], |
|
189 | + (array) $paths |
|
190 | + ); |
|
191 | + } |
|
192 | + } |
|
193 | + |
|
194 | + /** |
|
195 | + * Registers a set of PSR-0 directories for a given prefix, |
|
196 | + * replacing any others previously set for this prefix. |
|
197 | + * |
|
198 | + * @param string $prefix The prefix |
|
199 | + * @param array|string $paths The PSR-0 base directories |
|
200 | + */ |
|
201 | + public function set($prefix, $paths) |
|
202 | + { |
|
203 | + if (!$prefix) { |
|
204 | + $this->fallbackDirsPsr0 = (array) $paths; |
|
205 | + } else { |
|
206 | + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
|
207 | + } |
|
208 | + } |
|
209 | + |
|
210 | + /** |
|
211 | + * Registers a set of PSR-4 directories for a given namespace, |
|
212 | + * replacing any others previously set for this namespace. |
|
213 | + * |
|
214 | + * @param string $prefix The prefix/namespace, with trailing '\\' |
|
215 | + * @param array|string $paths The PSR-4 base directories |
|
216 | + * |
|
217 | + * @throws \InvalidArgumentException |
|
218 | + */ |
|
219 | + public function setPsr4($prefix, $paths) |
|
220 | + { |
|
221 | + if (!$prefix) { |
|
222 | + $this->fallbackDirsPsr4 = (array) $paths; |
|
223 | + } else { |
|
224 | + $length = strlen($prefix); |
|
225 | + if ('\\' !== $prefix[$length - 1]) { |
|
226 | + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
|
227 | + } |
|
228 | + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
|
229 | + $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
230 | + } |
|
231 | + } |
|
232 | + |
|
233 | + /** |
|
234 | + * Turns on searching the include path for class files. |
|
235 | + * |
|
236 | + * @param bool $useIncludePath |
|
237 | + */ |
|
238 | + public function setUseIncludePath($useIncludePath) |
|
239 | + { |
|
240 | + $this->useIncludePath = $useIncludePath; |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Can be used to check if the autoloader uses the include path to check |
|
245 | + * for classes. |
|
246 | + * |
|
247 | + * @return bool |
|
248 | + */ |
|
249 | + public function getUseIncludePath() |
|
250 | + { |
|
251 | + return $this->useIncludePath; |
|
252 | + } |
|
253 | + |
|
254 | + /** |
|
255 | + * Turns off searching the prefix and fallback directories for classes |
|
256 | + * that have not been registered with the class map. |
|
257 | + * |
|
258 | + * @param bool $classMapAuthoritative |
|
259 | + */ |
|
260 | + public function setClassMapAuthoritative($classMapAuthoritative) |
|
261 | + { |
|
262 | + $this->classMapAuthoritative = $classMapAuthoritative; |
|
263 | + } |
|
264 | + |
|
265 | + /** |
|
266 | + * Should class lookup fail if not found in the current class map? |
|
267 | + * |
|
268 | + * @return bool |
|
269 | + */ |
|
270 | + public function isClassMapAuthoritative() |
|
271 | + { |
|
272 | + return $this->classMapAuthoritative; |
|
273 | + } |
|
274 | + |
|
275 | + /** |
|
276 | + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. |
|
277 | + * |
|
278 | + * @param string|null $apcuPrefix |
|
279 | + */ |
|
280 | + public function setApcuPrefix($apcuPrefix) |
|
281 | + { |
|
282 | + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; |
|
283 | + } |
|
284 | + |
|
285 | + /** |
|
286 | + * The APCu prefix in use, or null if APCu caching is not enabled. |
|
287 | + * |
|
288 | + * @return string|null |
|
289 | + */ |
|
290 | + public function getApcuPrefix() |
|
291 | + { |
|
292 | + return $this->apcuPrefix; |
|
293 | + } |
|
294 | + |
|
295 | + /** |
|
296 | + * Registers this instance as an autoloader. |
|
297 | + * |
|
298 | + * @param bool $prepend Whether to prepend the autoloader or not |
|
299 | + */ |
|
300 | + public function register($prepend = false) |
|
301 | + { |
|
302 | + spl_autoload_register(array($this, 'loadClass'), true, $prepend); |
|
303 | + } |
|
304 | + |
|
305 | + /** |
|
306 | + * Unregisters this instance as an autoloader. |
|
307 | + */ |
|
308 | + public function unregister() |
|
309 | + { |
|
310 | + spl_autoload_unregister(array($this, 'loadClass')); |
|
311 | + } |
|
312 | + |
|
313 | + /** |
|
314 | + * Loads the given class or interface. |
|
315 | + * |
|
316 | + * @param string $class The name of the class |
|
317 | + * @return bool|null True if loaded, null otherwise |
|
318 | + */ |
|
319 | + public function loadClass($class) |
|
320 | + { |
|
321 | + if ($file = $this->findFile($class)) { |
|
322 | + includeFile($file); |
|
323 | + |
|
324 | + return true; |
|
325 | + } |
|
326 | + } |
|
327 | + |
|
328 | + /** |
|
329 | + * Finds the path to the file where the class is defined. |
|
330 | + * |
|
331 | + * @param string $class The name of the class |
|
332 | + * |
|
333 | + * @return string|false The path if found, false otherwise |
|
334 | + */ |
|
335 | + public function findFile($class) |
|
336 | + { |
|
337 | + // class map lookup |
|
338 | + if (isset($this->classMap[$class])) { |
|
339 | + return $this->classMap[$class]; |
|
340 | + } |
|
341 | + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { |
|
342 | + return false; |
|
343 | + } |
|
344 | + if (null !== $this->apcuPrefix) { |
|
345 | + $file = apcu_fetch($this->apcuPrefix.$class, $hit); |
|
346 | + if ($hit) { |
|
347 | + return $file; |
|
348 | + } |
|
349 | + } |
|
350 | + |
|
351 | + $file = $this->findFileWithExtension($class, '.php'); |
|
352 | + |
|
353 | + // Search for Hack files if we are running on HHVM |
|
354 | + if (false === $file && defined('HHVM_VERSION')) { |
|
355 | + $file = $this->findFileWithExtension($class, '.hh'); |
|
356 | + } |
|
357 | + |
|
358 | + if (null !== $this->apcuPrefix) { |
|
359 | + apcu_add($this->apcuPrefix.$class, $file); |
|
360 | + } |
|
361 | + |
|
362 | + if (false === $file) { |
|
363 | + // Remember that this class does not exist. |
|
364 | + $this->missingClasses[$class] = true; |
|
365 | + } |
|
366 | + |
|
367 | + return $file; |
|
368 | + } |
|
369 | + |
|
370 | + private function findFileWithExtension($class, $ext) |
|
371 | + { |
|
372 | + // PSR-4 lookup |
|
373 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
374 | + |
|
375 | + $first = $class[0]; |
|
376 | + if (isset($this->prefixLengthsPsr4[$first])) { |
|
377 | + $subPath = $class; |
|
378 | + while (false !== $lastPos = strrpos($subPath, '\\')) { |
|
379 | + $subPath = substr($subPath, 0, $lastPos); |
|
380 | + $search = $subPath.'\\'; |
|
381 | + if (isset($this->prefixDirsPsr4[$search])) { |
|
382 | + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
383 | + foreach ($this->prefixDirsPsr4[$search] as $dir) { |
|
384 | + if (file_exists($file = $dir . $pathEnd)) { |
|
385 | + return $file; |
|
386 | + } |
|
387 | + } |
|
388 | + } |
|
389 | + } |
|
390 | + } |
|
391 | + |
|
392 | + // PSR-4 fallback dirs |
|
393 | + foreach ($this->fallbackDirsPsr4 as $dir) { |
|
394 | + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
395 | + return $file; |
|
396 | + } |
|
397 | + } |
|
398 | + |
|
399 | + // PSR-0 lookup |
|
400 | + if (false !== $pos = strrpos($class, '\\')) { |
|
401 | + // namespaced class name |
|
402 | + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) |
|
403 | + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
|
404 | + } else { |
|
405 | + // PEAR-like class name |
|
406 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
407 | + } |
|
408 | + |
|
409 | + if (isset($this->prefixesPsr0[$first])) { |
|
410 | + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
|
411 | + if (0 === strpos($class, $prefix)) { |
|
412 | + foreach ($dirs as $dir) { |
|
413 | + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
414 | + return $file; |
|
415 | + } |
|
416 | + } |
|
417 | + } |
|
418 | + } |
|
419 | + } |
|
420 | + |
|
421 | + // PSR-0 fallback dirs |
|
422 | + foreach ($this->fallbackDirsPsr0 as $dir) { |
|
423 | + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
424 | + return $file; |
|
425 | + } |
|
426 | + } |
|
427 | + |
|
428 | + // PSR-0 include paths. |
|
429 | + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { |
|
430 | + return $file; |
|
431 | + } |
|
432 | + |
|
433 | + return false; |
|
434 | + } |
|
435 | 435 | } |
436 | 436 | |
437 | 437 | /** |
@@ -441,5 +441,5 @@ discard block |
||
441 | 441 | */ |
442 | 442 | function includeFile($file) |
443 | 443 | { |
444 | - include $file; |
|
444 | + include $file; |
|
445 | 445 | } |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | private function findFileWithExtension($class, $ext) |
371 | 371 | { |
372 | 372 | // PSR-4 lookup |
373 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
373 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext; |
|
374 | 374 | |
375 | 375 | $first = $class[0]; |
376 | 376 | if (isset($this->prefixLengthsPsr4[$first])) { |
@@ -379,9 +379,9 @@ discard block |
||
379 | 379 | $subPath = substr($subPath, 0, $lastPos); |
380 | 380 | $search = $subPath.'\\'; |
381 | 381 | if (isset($this->prefixDirsPsr4[$search])) { |
382 | - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
382 | + $pathEnd = DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $lastPos + 1); |
|
383 | 383 | foreach ($this->prefixDirsPsr4[$search] as $dir) { |
384 | - if (file_exists($file = $dir . $pathEnd)) { |
|
384 | + if (file_exists($file = $dir.$pathEnd)) { |
|
385 | 385 | return $file; |
386 | 386 | } |
387 | 387 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | |
392 | 392 | // PSR-4 fallback dirs |
393 | 393 | foreach ($this->fallbackDirsPsr4 as $dir) { |
394 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
394 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) { |
|
395 | 395 | return $file; |
396 | 396 | } |
397 | 397 | } |
@@ -403,14 +403,14 @@ discard block |
||
403 | 403 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
404 | 404 | } else { |
405 | 405 | // PEAR-like class name |
406 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
406 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext; |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | if (isset($this->prefixesPsr0[$first])) { |
410 | 410 | foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
411 | 411 | if (0 === strpos($class, $prefix)) { |
412 | 412 | foreach ($dirs as $dir) { |
413 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
413 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
414 | 414 | return $file; |
415 | 415 | } |
416 | 416 | } |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | |
421 | 421 | // PSR-0 fallback dirs |
422 | 422 | foreach ($this->fallbackDirsPsr0 as $dir) { |
423 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
423 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
424 | 424 | return $file; |
425 | 425 | } |
426 | 426 | } |
@@ -40,8 +40,7 @@ discard block |
||
40 | 40 | * @see http://www.php-fig.org/psr/psr-0/ |
41 | 41 | * @see http://www.php-fig.org/psr/psr-4/ |
42 | 42 | */ |
43 | -class ClassLoader |
|
44 | -{ |
|
43 | +class ClassLoader { |
|
45 | 44 | // PSR-4 |
46 | 45 | private $prefixLengthsPsr4 = array(); |
47 | 46 | private $prefixDirsPsr4 = array(); |
@@ -57,8 +56,7 @@ discard block |
||
57 | 56 | private $missingClasses = array(); |
58 | 57 | private $apcuPrefix; |
59 | 58 | |
60 | - public function getPrefixes() |
|
61 | - { |
|
59 | + public function getPrefixes() { |
|
62 | 60 | if (!empty($this->prefixesPsr0)) { |
63 | 61 | return call_user_func_array('array_merge', $this->prefixesPsr0); |
64 | 62 | } |
@@ -66,31 +64,26 @@ discard block |
||
66 | 64 | return array(); |
67 | 65 | } |
68 | 66 | |
69 | - public function getPrefixesPsr4() |
|
70 | - { |
|
67 | + public function getPrefixesPsr4() { |
|
71 | 68 | return $this->prefixDirsPsr4; |
72 | 69 | } |
73 | 70 | |
74 | - public function getFallbackDirs() |
|
75 | - { |
|
71 | + public function getFallbackDirs() { |
|
76 | 72 | return $this->fallbackDirsPsr0; |
77 | 73 | } |
78 | 74 | |
79 | - public function getFallbackDirsPsr4() |
|
80 | - { |
|
75 | + public function getFallbackDirsPsr4() { |
|
81 | 76 | return $this->fallbackDirsPsr4; |
82 | 77 | } |
83 | 78 | |
84 | - public function getClassMap() |
|
85 | - { |
|
79 | + public function getClassMap() { |
|
86 | 80 | return $this->classMap; |
87 | 81 | } |
88 | 82 | |
89 | 83 | /** |
90 | 84 | * @param array $classMap Class to filename map |
91 | 85 | */ |
92 | - public function addClassMap(array $classMap) |
|
93 | - { |
|
86 | + public function addClassMap(array $classMap) { |
|
94 | 87 | if ($this->classMap) { |
95 | 88 | $this->classMap = array_merge($this->classMap, $classMap); |
96 | 89 | } else { |
@@ -106,8 +99,7 @@ discard block |
||
106 | 99 | * @param array|string $paths The PSR-0 root directories |
107 | 100 | * @param bool $prepend Whether to prepend the directories |
108 | 101 | */ |
109 | - public function add($prefix, $paths, $prepend = false) |
|
110 | - { |
|
102 | + public function add($prefix, $paths, $prepend = false) { |
|
111 | 103 | if (!$prefix) { |
112 | 104 | if ($prepend) { |
113 | 105 | $this->fallbackDirsPsr0 = array_merge( |
@@ -153,8 +145,7 @@ discard block |
||
153 | 145 | * |
154 | 146 | * @throws \InvalidArgumentException |
155 | 147 | */ |
156 | - public function addPsr4($prefix, $paths, $prepend = false) |
|
157 | - { |
|
148 | + public function addPsr4($prefix, $paths, $prepend = false) { |
|
158 | 149 | if (!$prefix) { |
159 | 150 | // Register directories for the root namespace. |
160 | 151 | if ($prepend) { |
@@ -198,8 +189,7 @@ discard block |
||
198 | 189 | * @param string $prefix The prefix |
199 | 190 | * @param array|string $paths The PSR-0 base directories |
200 | 191 | */ |
201 | - public function set($prefix, $paths) |
|
202 | - { |
|
192 | + public function set($prefix, $paths) { |
|
203 | 193 | if (!$prefix) { |
204 | 194 | $this->fallbackDirsPsr0 = (array) $paths; |
205 | 195 | } else { |
@@ -216,8 +206,7 @@ discard block |
||
216 | 206 | * |
217 | 207 | * @throws \InvalidArgumentException |
218 | 208 | */ |
219 | - public function setPsr4($prefix, $paths) |
|
220 | - { |
|
209 | + public function setPsr4($prefix, $paths) { |
|
221 | 210 | if (!$prefix) { |
222 | 211 | $this->fallbackDirsPsr4 = (array) $paths; |
223 | 212 | } else { |
@@ -235,8 +224,7 @@ discard block |
||
235 | 224 | * |
236 | 225 | * @param bool $useIncludePath |
237 | 226 | */ |
238 | - public function setUseIncludePath($useIncludePath) |
|
239 | - { |
|
227 | + public function setUseIncludePath($useIncludePath) { |
|
240 | 228 | $this->useIncludePath = $useIncludePath; |
241 | 229 | } |
242 | 230 | |
@@ -246,8 +234,7 @@ discard block |
||
246 | 234 | * |
247 | 235 | * @return bool |
248 | 236 | */ |
249 | - public function getUseIncludePath() |
|
250 | - { |
|
237 | + public function getUseIncludePath() { |
|
251 | 238 | return $this->useIncludePath; |
252 | 239 | } |
253 | 240 | |
@@ -257,8 +244,7 @@ discard block |
||
257 | 244 | * |
258 | 245 | * @param bool $classMapAuthoritative |
259 | 246 | */ |
260 | - public function setClassMapAuthoritative($classMapAuthoritative) |
|
261 | - { |
|
247 | + public function setClassMapAuthoritative($classMapAuthoritative) { |
|
262 | 248 | $this->classMapAuthoritative = $classMapAuthoritative; |
263 | 249 | } |
264 | 250 | |
@@ -267,8 +253,7 @@ discard block |
||
267 | 253 | * |
268 | 254 | * @return bool |
269 | 255 | */ |
270 | - public function isClassMapAuthoritative() |
|
271 | - { |
|
256 | + public function isClassMapAuthoritative() { |
|
272 | 257 | return $this->classMapAuthoritative; |
273 | 258 | } |
274 | 259 | |
@@ -277,8 +262,7 @@ discard block |
||
277 | 262 | * |
278 | 263 | * @param string|null $apcuPrefix |
279 | 264 | */ |
280 | - public function setApcuPrefix($apcuPrefix) |
|
281 | - { |
|
265 | + public function setApcuPrefix($apcuPrefix) { |
|
282 | 266 | $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; |
283 | 267 | } |
284 | 268 | |
@@ -287,8 +271,7 @@ discard block |
||
287 | 271 | * |
288 | 272 | * @return string|null |
289 | 273 | */ |
290 | - public function getApcuPrefix() |
|
291 | - { |
|
274 | + public function getApcuPrefix() { |
|
292 | 275 | return $this->apcuPrefix; |
293 | 276 | } |
294 | 277 | |
@@ -297,16 +280,14 @@ discard block |
||
297 | 280 | * |
298 | 281 | * @param bool $prepend Whether to prepend the autoloader or not |
299 | 282 | */ |
300 | - public function register($prepend = false) |
|
301 | - { |
|
283 | + public function register($prepend = false) { |
|
302 | 284 | spl_autoload_register(array($this, 'loadClass'), true, $prepend); |
303 | 285 | } |
304 | 286 | |
305 | 287 | /** |
306 | 288 | * Unregisters this instance as an autoloader. |
307 | 289 | */ |
308 | - public function unregister() |
|
309 | - { |
|
290 | + public function unregister() { |
|
310 | 291 | spl_autoload_unregister(array($this, 'loadClass')); |
311 | 292 | } |
312 | 293 | |
@@ -316,8 +297,7 @@ discard block |
||
316 | 297 | * @param string $class The name of the class |
317 | 298 | * @return bool|null True if loaded, null otherwise |
318 | 299 | */ |
319 | - public function loadClass($class) |
|
320 | - { |
|
300 | + public function loadClass($class) { |
|
321 | 301 | if ($file = $this->findFile($class)) { |
322 | 302 | includeFile($file); |
323 | 303 | |
@@ -332,8 +312,7 @@ discard block |
||
332 | 312 | * |
333 | 313 | * @return string|false The path if found, false otherwise |
334 | 314 | */ |
335 | - public function findFile($class) |
|
336 | - { |
|
315 | + public function findFile($class) { |
|
337 | 316 | // class map lookup |
338 | 317 | if (isset($this->classMap[$class])) { |
339 | 318 | return $this->classMap[$class]; |
@@ -367,8 +346,7 @@ discard block |
||
367 | 346 | return $file; |
368 | 347 | } |
369 | 348 | |
370 | - private function findFileWithExtension($class, $ext) |
|
371 | - { |
|
349 | + private function findFileWithExtension($class, $ext) { |
|
372 | 350 | // PSR-4 lookup |
373 | 351 | $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
374 | 352 | |
@@ -439,7 +417,6 @@ discard block |
||
439 | 417 | * |
440 | 418 | * Prevents access to $this/self from included files. |
441 | 419 | */ |
442 | -function includeFile($file) |
|
443 | -{ |
|
420 | +function includeFile($file) { |
|
444 | 421 | include $file; |
445 | 422 | } |
@@ -51,9 +51,9 @@ discard block |
||
51 | 51 | private $prefixesPsr0 = array(); |
52 | 52 | private $fallbackDirsPsr0 = array(); |
53 | 53 | |
54 | - private $useIncludePath = false; |
|
54 | + private $useIncludePath = FALSE; |
|
55 | 55 | private $classMap = array(); |
56 | - private $classMapAuthoritative = false; |
|
56 | + private $classMapAuthoritative = FALSE; |
|
57 | 57 | private $missingClasses = array(); |
58 | 58 | private $apcuPrefix; |
59 | 59 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * @param array|string $paths The PSR-0 root directories |
107 | 107 | * @param bool $prepend Whether to prepend the directories |
108 | 108 | */ |
109 | - public function add($prefix, $paths, $prepend = false) |
|
109 | + public function add($prefix, $paths, $prepend = FALSE) |
|
110 | 110 | { |
111 | 111 | if (!$prefix) { |
112 | 112 | if ($prepend) { |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | * |
154 | 154 | * @throws \InvalidArgumentException |
155 | 155 | */ |
156 | - public function addPsr4($prefix, $paths, $prepend = false) |
|
156 | + public function addPsr4($prefix, $paths, $prepend = FALSE) |
|
157 | 157 | { |
158 | 158 | if (!$prefix) { |
159 | 159 | // Register directories for the root namespace. |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public function setApcuPrefix($apcuPrefix) |
281 | 281 | { |
282 | - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; |
|
282 | + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : NULL; |
|
283 | 283 | } |
284 | 284 | |
285 | 285 | /** |
@@ -297,9 +297,9 @@ discard block |
||
297 | 297 | * |
298 | 298 | * @param bool $prepend Whether to prepend the autoloader or not |
299 | 299 | */ |
300 | - public function register($prepend = false) |
|
300 | + public function register($prepend = FALSE) |
|
301 | 301 | { |
302 | - spl_autoload_register(array($this, 'loadClass'), true, $prepend); |
|
302 | + spl_autoload_register(array($this, 'loadClass'), TRUE, $prepend); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | /** |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | if ($file = $this->findFile($class)) { |
322 | 322 | includeFile($file); |
323 | 323 | |
324 | - return true; |
|
324 | + return TRUE; |
|
325 | 325 | } |
326 | 326 | } |
327 | 327 | |
@@ -339,9 +339,9 @@ discard block |
||
339 | 339 | return $this->classMap[$class]; |
340 | 340 | } |
341 | 341 | if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { |
342 | - return false; |
|
342 | + return FALSE; |
|
343 | 343 | } |
344 | - if (null !== $this->apcuPrefix) { |
|
344 | + if (NULL !== $this->apcuPrefix) { |
|
345 | 345 | $file = apcu_fetch($this->apcuPrefix.$class, $hit); |
346 | 346 | if ($hit) { |
347 | 347 | return $file; |
@@ -351,17 +351,17 @@ discard block |
||
351 | 351 | $file = $this->findFileWithExtension($class, '.php'); |
352 | 352 | |
353 | 353 | // Search for Hack files if we are running on HHVM |
354 | - if (false === $file && defined('HHVM_VERSION')) { |
|
354 | + if (FALSE === $file && defined('HHVM_VERSION')) { |
|
355 | 355 | $file = $this->findFileWithExtension($class, '.hh'); |
356 | 356 | } |
357 | 357 | |
358 | - if (null !== $this->apcuPrefix) { |
|
358 | + if (NULL !== $this->apcuPrefix) { |
|
359 | 359 | apcu_add($this->apcuPrefix.$class, $file); |
360 | 360 | } |
361 | 361 | |
362 | - if (false === $file) { |
|
362 | + if (FALSE === $file) { |
|
363 | 363 | // Remember that this class does not exist. |
364 | - $this->missingClasses[$class] = true; |
|
364 | + $this->missingClasses[$class] = TRUE; |
|
365 | 365 | } |
366 | 366 | |
367 | 367 | return $file; |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | $first = $class[0]; |
376 | 376 | if (isset($this->prefixLengthsPsr4[$first])) { |
377 | 377 | $subPath = $class; |
378 | - while (false !== $lastPos = strrpos($subPath, '\\')) { |
|
378 | + while (FALSE !== $lastPos = strrpos($subPath, '\\')) { |
|
379 | 379 | $subPath = substr($subPath, 0, $lastPos); |
380 | 380 | $search = $subPath.'\\'; |
381 | 381 | if (isset($this->prefixDirsPsr4[$search])) { |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | } |
398 | 398 | |
399 | 399 | // PSR-0 lookup |
400 | - if (false !== $pos = strrpos($class, '\\')) { |
|
400 | + if (FALSE !== $pos = strrpos($class, '\\')) { |
|
401 | 401 | // namespaced class name |
402 | 402 | $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) |
403 | 403 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | return $file; |
431 | 431 | } |
432 | 432 | |
433 | - return false; |
|
433 | + return FALSE; |
|
434 | 434 | } |
435 | 435 | } |
436 | 436 |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | -require_once __DIR__ . '/composer/autoload_real.php'; |
|
5 | +require_once __DIR__.'/composer/autoload_real.php'; |
|
6 | 6 | |
7 | 7 | return ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211::getLoader(); |
@@ -4,49 +4,49 @@ |
||
4 | 4 | |
5 | 5 | class ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
6 | 6 | { |
7 | - private static $loader; |
|
8 | - |
|
9 | - public static function loadClassLoader($class) |
|
10 | - { |
|
11 | - if ('Composer\Autoload\ClassLoader' === $class) { |
|
12 | - require __DIR__ . '/ClassLoader.php'; |
|
13 | - } |
|
14 | - } |
|
15 | - |
|
16 | - public static function getLoader() |
|
17 | - { |
|
18 | - if (null !== self::$loader) { |
|
19 | - return self::$loader; |
|
20 | - } |
|
21 | - |
|
22 | - spl_autoload_register(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader'), true, true); |
|
23 | - self::$loader = $loader = new \Composer\Autoload\ClassLoader(); |
|
24 | - spl_autoload_unregister(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader')); |
|
25 | - |
|
26 | - $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); |
|
27 | - if ($useStaticLoader) { |
|
28 | - require_once __DIR__ . '/autoload_static.php'; |
|
29 | - |
|
30 | - call_user_func(\Composer\Autoload\ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211::getInitializer($loader)); |
|
31 | - } else { |
|
32 | - $map = require __DIR__ . '/autoload_namespaces.php'; |
|
33 | - foreach ($map as $namespace => $path) { |
|
34 | - $loader->set($namespace, $path); |
|
35 | - } |
|
36 | - |
|
37 | - $map = require __DIR__ . '/autoload_psr4.php'; |
|
38 | - foreach ($map as $namespace => $path) { |
|
39 | - $loader->setPsr4($namespace, $path); |
|
40 | - } |
|
41 | - |
|
42 | - $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
43 | - if ($classMap) { |
|
44 | - $loader->addClassMap($classMap); |
|
45 | - } |
|
46 | - } |
|
47 | - |
|
48 | - $loader->register(true); |
|
49 | - |
|
50 | - return $loader; |
|
51 | - } |
|
7 | + private static $loader; |
|
8 | + |
|
9 | + public static function loadClassLoader($class) |
|
10 | + { |
|
11 | + if ('Composer\Autoload\ClassLoader' === $class) { |
|
12 | + require __DIR__ . '/ClassLoader.php'; |
|
13 | + } |
|
14 | + } |
|
15 | + |
|
16 | + public static function getLoader() |
|
17 | + { |
|
18 | + if (null !== self::$loader) { |
|
19 | + return self::$loader; |
|
20 | + } |
|
21 | + |
|
22 | + spl_autoload_register(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader'), true, true); |
|
23 | + self::$loader = $loader = new \Composer\Autoload\ClassLoader(); |
|
24 | + spl_autoload_unregister(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader')); |
|
25 | + |
|
26 | + $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); |
|
27 | + if ($useStaticLoader) { |
|
28 | + require_once __DIR__ . '/autoload_static.php'; |
|
29 | + |
|
30 | + call_user_func(\Composer\Autoload\ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211::getInitializer($loader)); |
|
31 | + } else { |
|
32 | + $map = require __DIR__ . '/autoload_namespaces.php'; |
|
33 | + foreach ($map as $namespace => $path) { |
|
34 | + $loader->set($namespace, $path); |
|
35 | + } |
|
36 | + |
|
37 | + $map = require __DIR__ . '/autoload_psr4.php'; |
|
38 | + foreach ($map as $namespace => $path) { |
|
39 | + $loader->setPsr4($namespace, $path); |
|
40 | + } |
|
41 | + |
|
42 | + $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
43 | + if ($classMap) { |
|
44 | + $loader->addClassMap($classMap); |
|
45 | + } |
|
46 | + } |
|
47 | + |
|
48 | + $loader->register(true); |
|
49 | + |
|
50 | + return $loader; |
|
51 | + } |
|
52 | 52 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -25,21 +25,21 @@ discard block |
||
25 | 25 | |
26 | 26 | $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); |
27 | 27 | if ($useStaticLoader) { |
28 | - require_once __DIR__ . '/autoload_static.php'; |
|
28 | + require_once __DIR__.'/autoload_static.php'; |
|
29 | 29 | |
30 | 30 | call_user_func(\Composer\Autoload\ComposerStaticInitb54f2ab986e91ad1d6ec93d3f8a2b211::getInitializer($loader)); |
31 | 31 | } else { |
32 | - $map = require __DIR__ . '/autoload_namespaces.php'; |
|
32 | + $map = require __DIR__.'/autoload_namespaces.php'; |
|
33 | 33 | foreach ($map as $namespace => $path) { |
34 | 34 | $loader->set($namespace, $path); |
35 | 35 | } |
36 | 36 | |
37 | - $map = require __DIR__ . '/autoload_psr4.php'; |
|
37 | + $map = require __DIR__.'/autoload_psr4.php'; |
|
38 | 38 | foreach ($map as $namespace => $path) { |
39 | 39 | $loader->setPsr4($namespace, $path); |
40 | 40 | } |
41 | 41 | |
42 | - $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
42 | + $classMap = require __DIR__.'/autoload_classmap.php'; |
|
43 | 43 | if ($classMap) { |
44 | 44 | $loader->addClassMap($classMap); |
45 | 45 | } |
@@ -2,19 +2,16 @@ |
||
2 | 2 | |
3 | 3 | // autoload_real.php @generated by Composer |
4 | 4 | |
5 | -class ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211 |
|
6 | -{ |
|
5 | +class ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211 { |
|
7 | 6 | private static $loader; |
8 | 7 | |
9 | - public static function loadClassLoader($class) |
|
10 | - { |
|
8 | + public static function loadClassLoader($class) { |
|
11 | 9 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | 10 | require __DIR__ . '/ClassLoader.php'; |
13 | 11 | } |
14 | 12 | } |
15 | 13 | |
16 | - public static function getLoader() |
|
17 | - { |
|
14 | + public static function getLoader() { |
|
18 | 15 | if (null !== self::$loader) { |
19 | 16 | return self::$loader; |
20 | 17 | } |
@@ -15,11 +15,11 @@ discard block |
||
15 | 15 | |
16 | 16 | public static function getLoader() |
17 | 17 | { |
18 | - if (null !== self::$loader) { |
|
18 | + if (NULL !== self::$loader) { |
|
19 | 19 | return self::$loader; |
20 | 20 | } |
21 | 21 | |
22 | - spl_autoload_register(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader'), true, true); |
|
22 | + spl_autoload_register(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader'), TRUE, TRUE); |
|
23 | 23 | self::$loader = $loader = new \Composer\Autoload\ClassLoader(); |
24 | 24 | spl_autoload_unregister(array('ComposerAutoloaderInitb54f2ab986e91ad1d6ec93d3f8a2b211', 'loadClassLoader')); |
25 | 25 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | - $loader->register(true); |
|
48 | + $loader->register(TRUE); |
|
49 | 49 | |
50 | 50 | return $loader; |
51 | 51 | } |