Ver código fonte

Resolve autoloader valid roots before checking

Allows symlinked app directories to work properly
tags/v8.2beta1
Robin McCorkell 8 anos atrás
pai
commit
895e633732
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      lib/autoloader.php

+ 1
- 1
lib/autoloader.php Ver arquivo

@@ -58,7 +58,7 @@ class Autoloader {
* @param string $root
*/
public function addValidRoot($root) {
$this->validRoots[] = $root;
$this->validRoots[] = stream_resolve_include_path($root);
}

/**

Carregando…
Cancelar
Salvar