[ClassLoader] moved most protected methods and properties to private

This commit is contained in:
Fabien Potencier 2011-03-08 20:55:22 +01:00
parent c9b965dbee
commit 32d2ec7571
3 changed files with 8 additions and 9 deletions

View File

@ -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;

View File

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

View File

@ -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.