Browse Source

Merge pull request #5463 from pierredup/patch-2

Remove type parameter from RepositoryInterface
Jordi Boggiano 8 năm trước cách đây
mục cha
commit
cca4faaadc
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      src/Composer/Repository/RepositoryInterface.php

+ 1 - 2
src/Composer/Repository/RepositoryInterface.php

@@ -67,9 +67,8 @@ interface RepositoryInterface extends \Countable
      *
      * @param  string $query search query
      * @param  int    $mode  a set of SEARCH_* constants to search on, implementations should do a best effort only
-     * @param  string $type  The type of package to search for. Defaults to all types of packages
      *
      * @return \array[] an array of array('name' => '...', 'description' => '...')
      */
-    public function search($query, $mode = 0, $type = null);
+    public function search($query, $mode = 0);
 }