Просмотр исходного кода

ZF-8516: s/asArray/toArray/

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19596 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 16 лет назад
Родитель
Сommit
2b37207e3e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      library/Zend/Log/Writer/Abstract.php

+ 1 - 1
library/Zend/Log/Writer/Abstract.php

@@ -114,7 +114,7 @@ abstract class Zend_Log_Writer_Abstract implements Zend_Log_FactoryInterface
     static protected function _parseConfig($config)
     {
         if ($config instanceof Zend_Config) {
-            $config = $config->asArray();
+            $config = $config->toArray();
         }
 
         if (!is_array($config)) {