Lines Matching full:bugs
34 * @return associative array of bugs, with id as key and an array of bugs
44 foreach ($response['bugs'] as $bug) {
186 …array('dependencies', $extras) ? $this->fetchDependencies( $response['bugs'] ) : $response['bugs'];
205 * Fetch info about several bugs.
210 * @return associative array of bugs, with id as key and an array of bugs
224 foreach ($response['bugs'] as $bug) {
229 // a bug does not exist, but we still need info about all the other bugs
234 $result["$f_id"] = $response['bugs'][0];
284 * Takes an array of bugs and adds the properties "depends_on_resolved" and "blocks_resolved".
286 * @param array $bugs - associative array with bug id as key
288 protected function fetchDependencies( &$bugs ) { argument
292 foreach ($bugs as $bug) {
306 foreach ($response['bugs'] as $bug) {
313 foreach ($bugs as &$bug) {
328 return $bugs;