Selaa lähdekoodia

Merge pull request #7565 from alcohol/add-remove-to-pkgrepointerface

add removePackage() to RepositoryInterface
Jordi Boggiano 6 vuotta sitten
vanhempi
commit
a1ead0e868
1 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. 7 0
      src/Composer/Repository/RepositoryInterface.php

+ 7 - 0
src/Composer/Repository/RepositoryInterface.php

@@ -71,4 +71,11 @@ interface RepositoryInterface extends \Countable
      * @return array[] an array of array('name' => '...', 'description' => '...')
      */
     public function search($query, $mode = 0);
+
+    /**
+     * Removes a package from the registered packages list.
+     *
+     * @param PackageInterface $package
+     */
+    public function removePackage(PackageInterface $package);
 }