Переглянути джерело

JsonConfigSource->array_unshift_ref() set private and changed name to arrayUnshiftRef()

Dawid Nowak 10 роки тому
батько
коміт
851082e9f4
1 змінених файлів з 2 додано та 2 видалено
  1. 2 2
      src/Composer/Config/JsonConfigSource.php

+ 2 - 2
src/Composer/Config/JsonConfigSource.php

@@ -120,7 +120,7 @@ class JsonConfigSource implements ConfigSourceInterface
         } else {
             // on failed clean update, call the fallback and rewrite the whole file
             $config = $this->file->read();
-            $this->array_unshift_ref($args, $config);
+            $this->arrayUnshiftRef($args, $config);
             call_user_func_array($fallback, $args);
             $this->file->write($config);
         }
@@ -137,7 +137,7 @@ class JsonConfigSource implements ConfigSourceInterface
      * @param mixed $value
      * @return array
      */
-    function array_unshift_ref(&$array, &$value)
+    private function arrayUnshiftRef(&$array, &$value)
     {
         $return = array_unshift($array, '');
         $array[0] =& $value;