1
0
Fork 0

rollback changes, since the implementation of the method "search" in the class "ComposerRepository" has parameter "type "

pull/5954/head
golodnyi 2016-12-08 22:53:03 +07:00
parent 1cced223d8
commit 64f3079c53
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class CompositeRepository extends BaseRepository
$matches = array();
foreach ($this->repositories as $repository) {
/* @var $repository RepositoryInterface */
$matches[] = $repository->search($query, $mode);
$matches[] = $repository->search($query, $mode, $type);
}
return $matches ? call_user_func_array('array_merge', $matches) : array();