__construct() public method

public __construct ( ClassLoader $parent = null )
$parent ClassLoader
 public function __construct()
 {
     parent::__construct();
 }
 /**
  * Creates a new CacheListClassLoader instance.
  *
  * The parameter should contain the paths provided to your cache save
  * handler. If no cache exists yet, an empty array should be provided
  * instead.
  *
  * @param string[] $cache The cached paths stored by your cache handler
  */
 public function __construct(array $cache)
 {
     parent::__construct();
     $this->cache = $cache;
     $this->cacheHandler = null;
 }