@@ -305,37 +305,6 @@ public function members($project_id, $parameters = [])
305
305
return $ this ->get ($ this ->getProjectPath ($ project_id , 'members ' ), $ resolver ->resolve ($ parameters ));
306
306
}
307
307
308
- /**
309
- * @param int $project_id
310
- * @param array $parameters (
311
- *
312
- * @var string $query The query you want to search members for.
313
- * )
314
- *
315
- * @throws MissingOptionsException If a required option is not provided
316
- *
317
- * @return mixed
318
- */
319
- public function membersAll ($ project_id , $ parameters = [])
320
- {
321
- if (!is_array ($ parameters )) {
322
- @trigger_error ("Deprecated: String parameter of the members() function is deprecated. " , E_USER_NOTICE );
323
- $ username_query = $ parameters ;
324
- $ parameters = array ();
325
- if (!empty ($ username_query )) {
326
- $ parameters ['query ' ] = $ username_query ;
327
- }
328
- }
329
-
330
- $ resolver = $ this ->createOptionsResolver ();
331
-
332
- $ resolver ->setDefined ('query ' )
333
- ->setAllowedTypes ('query ' , 'string ' )
334
- ;
335
-
336
- return $ this ->get ($ this ->getProjectPath ($ project_id , 'members/all ' ), $ resolver ->resolve ($ parameters ));
337
- }
338
-
339
308
/**
340
309
* @param int $project_id
341
310
* @param int $user_id
@@ -811,7 +780,7 @@ public function deployment($project_id, $deployment_id)
811
780
{
812
781
return $ this ->get ($ this ->getProjectPath ($ project_id , 'deployments/ ' .$ this ->encodePath ($ deployment_id )));
813
782
}
814
-
783
+
815
784
/**
816
785
* @param mixed $project_id
817
786
* @param array $parameters
@@ -839,7 +808,7 @@ public function addShare($project_id, array $parameters = [])
839
808
840
809
return $ this ->post ($ this ->getProjectPath ($ project_id , 'share ' ), $ resolver ->resolve ($ parameters ));
841
810
}
842
-
811
+
843
812
/**
844
813
* @param mixed $project_id
845
814
* @param int $group_id
0 commit comments