From 1c2383f1a5c8b210afad0c95e24243a813e6648d Mon Sep 17 00:00:00 2001 From: Hugo Hamon Date: Sun, 21 May 2017 23:03:33 +0200 Subject: [PATCH] [DependencyInjection] remove unused variable --- .../Component/DependencyInjection/Compiler/AutowirePass.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php index 0a6a0dfc1b6b..b79a656aa8ea 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @@ -163,7 +163,6 @@ private function doProcessValue($value, $isRoot = false) */ private function getMethodsToAutowire(\ReflectionClass $reflectionClass) { - $found = array(); $methodsToAutowire = array(); foreach ($reflectionClass->getMethods() as $reflectionMethod) {