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 d5eddc0 commit 25da423Copy full SHA for 25da423
src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php
@@ -293,19 +293,4 @@ public function toString()
293
"\n".str_replace(' '.getcwd().\DIRECTORY_SEPARATOR, ' ', $exception->getTraceAsString()).
294
"\n";
295
}
296
-
297
- private function getPackageFromLine(array $line)
298
- {
299
- if (!isset($line['file'])) {
300
- return 'internal function';
301
- }
302
- if (!$this->pathOriginatesFromVendor($line['file'])) {
303
- return 'source code';
304
305
- try {
306
- return $this->getPackage($line['file']);
307
- } catch (\RuntimeException $e) {
308
- return 'unknown';
309
310
311
0 commit comments