From cea2c7e60f72d95ad296b38979a7c1370f2260f9 Mon Sep 17 00:00:00 2001 From: Kevin Bond Date: Sun, 12 Feb 2012 08:57:10 -0500 Subject: [PATCH] removed unneeded local variable --- src/Symfony/Bundle/FrameworkBundle/HttpKernel.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/HttpKernel.php b/src/Symfony/Bundle/FrameworkBundle/HttpKernel.php index 7fede85bc6..613203dce5 100644 --- a/src/Symfony/Bundle/FrameworkBundle/HttpKernel.php +++ b/src/Symfony/Bundle/FrameworkBundle/HttpKernel.php @@ -223,8 +223,6 @@ class HttpKernel extends BaseHttpKernel */ public function renderHIncludeTag($uri, $defaultContent = null) { - $html = sprintf('%s', $uri, $defaultContent); - - return $html; + return sprintf('%s', $uri, $defaultContent); } }