From e6ba591e9503fa4d35390936d45bd4ee543de9d1 Mon Sep 17 00:00:00 2001 From: Sara Itani Date: Mon, 10 Apr 2017 21:58:33 -0700 Subject: [PATCH] Catch all errors in perf test --- Performance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Performance.php b/Performance.php index 7b8e6b3..c110300 100644 --- a/Performance.php +++ b/Performance.php @@ -68,7 +68,7 @@ foreach($frameworks as $framework) { try { $document = new PhpDocument($testCaseFile, $fileContents, $index, $parser, $docBlockFactory, $definitionResolver); - } catch (\Exception $e) { + } catch (\Throwable $e) { continue; } }