浏览代码

[ClassLoader] moved most protected methods and properties to private

Fabien Potencier 14 年之前
父节点
当前提交
32d2ec7571

+ 3 - 4
src/Symfony/Component/ClassLoader/ClassCollectionLoader.php

@@ -18,7 +18,7 @@ namespace Symfony\Component\ClassLoader;
  */
 class ClassCollectionLoader
 {
-    static protected $loaded;
+    static private $loaded;
 
     /**
      * Loads a list of classes and caches them in one big file.
@@ -174,8 +174,7 @@ class ClassCollectionLoader
      *
      * @throws \RuntimeException when a cache file cannot be written
      */
-     
-    static protected function writeCacheFile($file, $content)
+    static private function writeCacheFile($file, $content)
     {
         $tmpFile = tempnam(dirname($file), basename($file));
         if (false !== @file_put_contents($tmpFile, $content) && @rename($tmpFile, $file)) {
@@ -197,7 +196,7 @@ class ClassCollectionLoader
      *
      * @return string The PHP string with the comments removed
      */
-    static protected function stripComments($source)
+    static private function stripComments($source)
     {
         if (!function_exists('token_get_all')) {
             return $source;

+ 1 - 1
src/Symfony/Component/ClassLoader/MapFileClassLoader.php

@@ -18,7 +18,7 @@ namespace Symfony\Component\ClassLoader;
  */
 class MapFileClassLoader
 {
-    protected $map = array();
+    private $map = array();
 
     /**
      * Constructor.

+ 4 - 4
src/Symfony/Component/ClassLoader/UniversalClassLoader.php

@@ -54,10 +54,10 @@ namespace Symfony\Component\ClassLoader;
  */
 class UniversalClassLoader
 {
-    protected $namespaces = array();
-    protected $prefixes = array();
-    protected $namespaceFallback = array();
-    protected $prefixFallback = array();
+    private $namespaces = array();
+    private $prefixes = array();
+    private $namespaceFallback = array();
+    private $prefixFallback = array();
 
     /**
      * Gets the configured namespaces.