8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c319c5c commit ada3fdbCopy full SHA for ada3fdb
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php
@@ -281,19 +281,4 @@ public function toString()
281
"\n".str_replace(' '.getcwd().\DIRECTORY_SEPARATOR, ' ', $exception->getTraceAsString()).
282
"\n";
283
}
284
-
285
- private function getPackageFromLine(array $line)
286
- {
287
- if (!isset($line['file'])) {
288
- return 'internal function';
289
- }
290
- if (!$this->pathOriginatesFromVendor($line['file'])) {
291
- return 'source code';
292
293
- try {
294
- return $this->getPackage($line['file']);
295
- } catch (\RuntimeException $e) {
296
- return 'unknown';
297
298
299
0 commit comments