From 282b05cbc197275d8c35a2abffbf4d1419d9d1f4 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 15 Aug 2013 15:02:15 +0200 Subject: [PATCH] [HttpKernel] removed unused variable --- src/Symfony/Component/HttpKernel/Kernel.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 0ca2e990ba..9d9295f326 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -59,7 +59,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $booted; protected $name; protected $startTime; - protected $classes; protected $errorReportingLevel; const VERSION = '2.2.6-DEV'; @@ -84,7 +83,6 @@ abstract class Kernel implements KernelInterface, TerminableInterface $this->booted = false; $this->rootDir = $this->getRootDir(); $this->name = $this->getName(); - $this->classes = array(); $this->bundles = array(); if ($this->debug) {