From 56e900b732c049611e8d7804a696b81768ffee02 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 20 Oct 2015 21:02:54 +0100 Subject: [PATCH] CS fix --- lib/Github/Api/Repo.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Github/Api/Repo.php b/lib/Github/Api/Repo.php index 3e398fe1c98..772e0d55792 100644 --- a/lib/Github/Api/Repo.php +++ b/lib/Github/Api/Repo.php @@ -53,6 +53,7 @@ public function all($id = null) if (!is_int($id)) { return $this->get('repositories'); } + return $this->get('repositories?since=' . rawurldecode($id)); }