10000 [Debug] Fix deprecated use of DebugClassLoader · symfony/symfony@4a6100a · GitHub
[go: up one dir, main page]

Skip to content

Commit 4a6100a

Browse files
[Debug] Fix deprecated use of DebugClassLoader
1 parent d206ffd commit 4a6100a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bundle/DebugBundle/DependencyInjection/Compiler/DumpDataCollectorPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
1616

1717
/**
18-
* Registers the file link format for the {@link \Symfony\Component\HttpKernel\DataCollector\DumpDataCollector\DumpDataCollector}.
18+
* Registers the file link format for the {@link \Symfony\Component\HttpKernel\DataCollector\DumpDataCollector}.
1919
*
2020
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
2121
*/

src/Symfony/Component/Debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public function provideClassNotFoundData()
9898
$symfonyAutoloader = new SymfonyClassLoader();
9999
$symfonyAutoloader->addPrefixes($prefixes);
100100

101-
$debugClassLoader = new DebugClassLoader($symfonyAutoloader);
101+
$debugClassLoader = new DebugClassLoader(array($symfonyAutoloader, 'loadClass'));
102102 41D5

103103
return array(
104104
array(

0 commit comments

Comments
 (0)
0