Commits ------- 54ec687 [2.0][Component][ClassLoader] cs Discussion ---------- [2.0][Component][ClassLoader] CS Bug fix: no Feature addition: no Backwards compatibility break: no Symfony2 tests pass: yes Fixes the following tickets: - Todo: -
@@ -84,6 +84,8 @@ class ApcUniversalClassLoader extends UniversalClassLoader
* Finds a file by class name while caching lookups to APC.
*
* @param string $class A class name to resolve to file
+ *
+ * @return string|null The path, if found
*/
public function findFile($class)
{
@@ -172,7 +172,7 @@ class ClassCollectionLoader
/**
* Writes a cache file.
- * @param string $file Filename
+ * @param string $file Filename
* @param string $content Temporary file content
* @throws \RuntimeException when a cache file cannot be written
@@ -169,8 +169,8 @@ class UniversalClassLoader
* Registers a set of classes using the PEAR naming convention.
- * @param string $prefix The classes prefix
- * @param array|string $paths The location(s) of the classes
+ * @param string $prefix The classes prefix
+ * @param array|string $paths The location(s) of the classes
* @api