Skip to content

Commit bb2b30e

Browse files
committed
Changed to single quotes.
1 parent 32ae587 commit bb2b30e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/Github/Api/Search.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Search extends AbstractApi
2929
*/
3030
public function repositories($q, $sort = 'updated', $order = 'desc')
3131
{
32-
return $this->get("/search/repositories", array('q' => $q, 'sort' => $sort, 'order' => $order));
32+
return $this->get('/search/repositories', array('q' => $q, 'sort' => $sort, 'order' => $order));
3333
}
3434

3535
/**
@@ -44,7 +44,7 @@ public function repositories($q, $sort = 'updated', $order = 'desc')
4444
*/
4545
public function issues($q, $sort = 'updated', $order = 'desc')
4646
{
47-
return $this->get("/search/issues", array('q' => $q, 'sort' => $sort, 'order' => $order));
47+
return $this->get('/search/issues', array('q' => $q, 'sort' => $sort, 'order' => $order));
4848
}
4949

5050
/**
@@ -59,7 +59,7 @@ public function issues($q, $sort = 'updated', $order = 'desc')
5959
*/
6060
public function code($q, $sort = 'updated', $order = 'desc')
6161
{
62-
return $this->get("/search/code", array('q' => $q, 'sort' => $sort, 'order' => $order));
62+
return $this->get('/search/code', array('q' => $q, 'sort' => $sort, 'order' => $order));
6363
}
6464

6565
/**
@@ -74,7 +74,7 @@ public function code($q, $sort = 'updated', $order = 'desc')
7474
*/
7575
public function users($q, $sort = 'updated', $order = 'desc')
7676
{
77-
return $this->get("/search/users", array('q' => $q, 'sort' => $sort, 'order' => $order));
77+
return $this->get('/search/users', array('q' => $q, 'sort' => $sort, 'order' => $order));
7878
}
7979

8080
}

0 commit comments

Comments
 (0)