Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / class-loader / WinCacheClassLoader.php
index 3e077450f1ebc9fa9784d1730383a5aafd8765d1..b95a1d79873acc69b48aba21b20b6c32ff7ae86e 100644 (file)
@@ -16,12 +16,10 @@ namespace Symfony\Component\ClassLoader;
  *
  * It expects an object implementing a findFile method to find the file. This
  * allow using it as a wrapper around the other loaders of the component (the
- * ClassLoader and the UniversalClassLoader for instance) but also around any
- * other autoloaders following this convention (the Composer one for instance).
+ * ClassLoader for instance) but also around any other autoloaders following
+ * this convention (the Composer one for instance).
  *
  *     // with a Symfony autoloader
- *     use Symfony\Component\ClassLoader\ClassLoader;
- *
  *     $loader = new ClassLoader();
  *     $loader->addPrefix('Symfony\Component', __DIR__.'/component');
  *     $loader->addPrefix('Symfony',           __DIR__.'/framework');