You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/Debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ public function provideClassNotFoundData()
40
40
'type' => 1,
41
41
'line' => 12,
42
42
'file' => 'foo.php',
43
-
'message' => 'Class "WhizBangFactory" not found',
43
+
'message' => 'Class \'WhizBangFactory\' not found',
44
44
),
45
45
'Attempted to load class "WhizBangFactory" from the global namespace in foo.php line 12. Did you forget a use statement for this class?',
46
46
),
@@ -49,7 +49,7 @@ public function provideClassNotFoundData()
49
49
'type' => 1,
50
50
'line' => 12,
51
51
'file' => 'foo.php',
52
-
'message' => 'Class "Foo\\Bar\\WhizBangFactory" not found',
52
+
'message' => 'Class \'Foo\\Bar\\WhizBangFactory\' not found',
53
53
),
54
54
'Attempted to load class "WhizBangFactory" from namespace "Foo\\Bar" in foo.php line 12. Do you need to "use" it from another namespace?',
55
55
),
@@ -58,7 +58,7 @@ public function provideClassNotFoundData()
58
58
'type' => 1,
59
59
'line' => 12,
60
60
'file' => 'foo.php',
61
-
'message' => 'Class "UndefinedFunctionException" not found',
61
+
'message' => 'Class \'UndefinedFunctionException\' not found',
62
62
),
63
63
'Attempted to load class "UndefinedFunctionException" from the global namespace in foo.php line 12. Did you forget a use statement for this class? Perhaps you need to add a use statement for one of the following: Symfony\Component\Debug\Exception\UndefinedFunctionException.',
64
64
),
@@ -67,7 +67,7 @@ public function provideClassNotFoundData()
67
67
'type' => 1,
68
68
'line' => 12,
69
69
'file' => 'foo.php',
70
-
'message' => 'Class "PEARClass" not found',
70
+
'message' => 'Class \'PEARClass\' not found',
71
71
),
72
72
'Attempted to load class "PEARClass" from the global namespace in foo.php line 12. Did you forget a use statement for this class? Perhaps you need to add a use statement for one of the following: Symfony_Component_Debug_Tests_Fixtures_PEARClass.',
73
73
),
@@ -76,7 +76,7 @@ public function provideClassNotFoundData()
76
76
'type' => 1,
77
77
'line' => 12,
78
78
'file' => 'foo.php',
79
-
'message' => 'Class "Foo\\Bar\\UndefinedFunctionException" not found',
79
+
'message' => 'Class \'Foo\\Bar\\UndefinedFunctionException\' not found',
80
80
),
81
81
'Attempted to load class "UndefinedFunctionException" from namespace "Foo\Bar" in foo.php line 12. Do you need to "use" it from another namespace? Perhaps you need to add a use statement for one of the following: Symfony\Component\Debug\Exception\UndefinedFunctionException.',
0 commit comments