From 15d22abad3e7e77b1eb248f46a8208a527773c4c Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Wed, 8 Mar 2017 21:26:16 -0500 Subject: [PATCH] Fix error in --xh-link. --- src/Commands/core/XhprofCommands.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/core/XhprofCommands.php b/src/Commands/core/XhprofCommands.php index 6827fd8695..47df228f68 100644 --- a/src/Commands/core/XhprofCommands.php +++ b/src/Commands/core/XhprofCommands.php @@ -54,7 +54,7 @@ function xhprofPost($result, CommandData $commandData) { */ function xhprofInitialize(InputInterface $input, AnnotationData $annotationData) { if (self::xhprofIsEnabled($input)) { - xhprof_enable(xh_flags($input->getOptions())); + xhprof_enable(self::xhprofFlags($input->getOptions())); } }