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
@@ -82,7 +82,7 @@ public function provideClassNotFoundData()
82
82
'file' => 'foo.php',
83
83
'message' => 'Class \'WhizBangFactory\' not found',
84
84
],
85
-
"Attempted to load class \"WhizBangFactory\" from the global namespace.\nDid you forget a \"use\" statement?",
85
+
"/^Attempted to load class \"WhizBangFactory\" from the global namespace.\nDid you forget a \"use\" statement\?$/",
86
86
],
87
87
[
88
88
[
@@ -91,7 +91,7 @@ public function provideClassNotFoundData()
91
91
'file' => 'foo.php',
92
92
'message' => 'Class \'Foo\\Bar\\WhizBangFactory\' not found',
93
93
],
94
-
"Attempted to load class \"WhizBangFactory\" from namespace \"Foo\\Bar\".\nDid you forget a \"use\" statement for another namespace?",
94
+
"/^Attempted to load class \"WhizBangFactory\" from namespace \"Foo\\\\Bar\".\nDid you forget a \"use\" statement for another namespace\?$/",
95
95
],
96
96
[
97
97
[
@@ -100,7 +100,7 @@ public function provideClassNotFoundData()
100
100
'file' => 'foo.php',
101
101
'message' => 'Class \'UndefinedFunctionException\' not found',
102
102
],
103
-
"Attempted to load class \"UndefinedFunctionException\" from the global namespace.\nDid you forget a \"use\" statement for \"Symfony\Component\Debug\Exception\UndefinedFunctionException\"?",
103
+
"/^Attempted to load class \"UndefinedFunctionException\" from the global namespace.\nDid you forget a \"use\" statement for .*\"Symfony\\\\Component\\\\Debug\\\\Exception\\\\UndefinedFunctionException\"\?$/",
104
104
],
105
105
[
106
106
[
@@ -109,7 +109,7 @@ public function provideClassNotFoundData()
109
109
'file' => 'foo.php',
110
110
'message' => 'Class \'PEARClass\' not found',
111
111
],
112
-
"Attempted to load class \"PEARClass\" from the global namespace.\nDid you forget a \"use\" statement for \"Symfony_Component_Debug_Tests_Fixtures_PEARClass\"?",
112
+
"/^Attempted to load class \"PEARClass\" from the global namespace.\nDid you forget a \"use\" statement for \"Symfony_Component_Debug_Tests_Fixtures_PEARClass\"\?$/",
113
113
],
114
114
[
115
115
[
@@ -118,7 +118,7 @@ public function provideClassNotFoundData()
118
118
'file' => 'foo.php',
119
119
'message' => 'Class \'Foo\\Bar\\UndefinedFunctionException\' not found',
120
120
],
121
-
"Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\Bar\".\nDid you forget a \"use\" statement for \"Symfony\Component\Debug\Exception\UndefinedFunctionException\"?",
121
+
"/^Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\\\\Bar\".\nDid you forget a \"use\" statement for .*\"Symfony\\\\Component\\\\Debug\\\\Exception\\\\UndefinedFunctionException\"\?$/",
122
122
],
123
123
[
124
124
[
@@ -127,7 +127,7 @@ public function provideClassNotFoundData()
127
127
'file' => 'foo.php',
128
128
'message' => 'Class \'Foo\\Bar\\UndefinedFunctionException\' not found',
129
129
],
130
-
"Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\Bar\".\nDid you forget a \"use\" statement for \"Symfony\Component\Debug\Exception\UndefinedFunctionException\"?",
130
+
"/^Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\\\\Bar\".\nDid you forget a \"use\" statement for \"Symfony\\\\Component\\\\Debug\\\\Exception\\\\UndefinedFunctionException\"\?$/",
131
131
[$autoloader, 'loadClass'],
132
132
],
133
133
[
@@ -137,7 +137,7 @@ public function provideClassNotFoundData()
137
137
'file' => 'foo.php',
138
138
'message' => 'Class \'Foo\\Bar\\UndefinedFunctionException\' not found',
139
139
],
140
-
"Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\Bar\".\nDid you forget a \"use\" statement for \"Symfony\Component\Debug\Exception\UndefinedFunctionException\"?",
140
+
"/^Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\\\\Bar\".\nDid you forget a \"use\" statement for \"Symfony\\\\Component\\\\Debug\\\\Exception\\\\UndefinedFunctionException\"\?/",
141
141
[$debugClassLoader, 'loadClass'],
142
142
],
143
143
[
@@ -147,7 +147,7 @@ public function provideClassNotFoundData()
147
147
'file' => 'foo.php',
148
148
'message' => 'Class \'Foo\\Bar\\UndefinedFunctionException\' not found',
149
149
],
150
-
"Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\\Bar\".\nDid you forget a \"use\" statement for another namespace?",
150
+
"/^Attempted to load class \"UndefinedFunctionException\" from namespace \"Foo\\\\Bar\".\nDid you forget a \"use\" statement for another namespace\?$/",
0 commit comments