8000 [3.0] [ClassLoader] removed deprecated UniversalClassLoader and DebugClassLoader classes. by hhamon · Pull Request #13203 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[3.0] [ClassLoader] removed deprecated UniversalClassLoader and DebugClassLoader classes. #13203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Symfony/Component/ClassLoader/ApcClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*
* It expects an object implementing a findFile method to find the file. This
* allows 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;
Expand Down
105 changes: 0 additions & 105 deletions src/Symfony/Component/ClassLoader/ApcUniversalClassLoader.php

This file was deleted.

8 changes: 8 additions & 0 deletions src/Symfony/Component/ClassLoader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
CHANGELOG
=========

3.0.0
-----

* The DebugClassLoader class has been removed
* The DebugUniversalClassLoader class has been removed
* The UniversalClassLoader class has been removed
* The ApcUniversalClassLoader class has been removed

2.4.0
-----

Expand Down
124 changes: 0 additions & 124 deletions src/Symfony/Component/ClassLoader/DebugClassLoader.php

This file was deleted.

68 changes: 0 additions & 68 deletions src/Symfony/Component/ClassLoader/DebugUniversalClassLoader.php

This file was deleted.

4 changes: 2 additions & 2 deletions src/Symfony/Component/ClassLoader/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ $loader->addPrefix('Symfony', __DIR__.'/src');
$loader->addPrefix('Monolog', __DIR__.'/vendor/monolog/src');
```

The `addPrefix()` method takes a namespace prefix and a path where to
look for the classes as arguments.
The `addPrefix()` method takes a namespace prefix and a path where to look for
the classes as arguments.

You can also register a sub-namespaces:

Expand Down
Loading
0