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