Sfoglia il codice sorgente

[ZF-11847] Zend_CodeGenerator
Fixed typo in Zend_CodeGenerator_Php_File
(Zend_Reflection_file -> Zend_Reflection_File)


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24534 44c647ce-9c0f-0410-b52a-842ac1e357ba

adamlundrigan 14 anni fa
parent
commit
e6acc71434
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      library/Zend/CodeGenerator/Php/File.php

+ 1 - 1
library/Zend/CodeGenerator/Php/File.php

@@ -110,7 +110,7 @@ class Zend_CodeGenerator_Php_File extends Zend_CodeGenerator_Php_Abstract
         $realpath = realpath($filePath);
 
         if ($realpath === false) {
-            if ( ($realpath = Zend_Reflection_file::findRealpathInIncludePath($filePath)) === false) {
+            if ( ($realpath = Zend_Reflection_File::findRealpathInIncludePath($filePath)) === false) {
                 require_once 'Zend/CodeGenerator/Php/Exception.php';
                 throw new Zend_CodeGenerator_Php_Exception('No file for ' . $realpath . ' was found.');
             }