Преглед изворни кода

It's called a repository, not a registry

Nils Adermann пре 14 година
родитељ
комит
f0af6b7d57
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Composer/Repository/ComposerRepository.php

+ 1 - 1
src/Composer/Repository/ComposerRepository.php

@@ -31,7 +31,7 @@ class ComposerRepository extends ArrayRepository
         parent::initialize();
         $packages = @json_decode(file_get_contents($this->url.'/packages.json'), true);
         if (!$packages) {
-            throw new \UnexpectedValueException('Could not parse package list from the '.$this->url.' registry');
+            throw new \UnexpectedValueException('Could not parse package list from the '.$this->url.' repository');
         }
 
         foreach ($packages as $data) {