Skip to content

Commit 3928615

Browse files
committed
Merge pull request #158 from GrahamCampbell/whitespace
Cleanup Whitespace
2 parents e0745bf + 8234450 commit 3928615

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

doc/issue/comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ $client->api('issue')->comments()->remove('KnpLabs', 'php-github-api', 33793831)
7171

7272
* `KnpLabs` : the owner of the repository
7373
* `php-github-api` : the name of the repository
74-
* `33793831` : the id of the comment
74+
* `33793831` : the id of the comment

doc/meta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ array(3) {
2626
string(15) "127.0.0.1/22"
2727
}
2828
}
29-
```
29+
```

lib/Github/Api/Repo.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ public function find($keyword, array $params = array())
3737
{
3838
return $this->get('legacy/repos/search/'.rawurlencode($keyword), array_merge(array('start_page' => 1), $params));
3939
}
40-
40+
4141
/**
4242
* Get the last year of commit activity for a repository grouped by week
4343
* @link http://developer.github.com/v3/repos/statistics/#commit-activity
44-
*
44+
*
4545
* @param string $username the user who owns the repository
4646
* @param string $repository the name of the repository
47-
*
47+
*
4848
* @return array commit activity grouped by week
4949
*/
5050
public function activity($username, $repository)
@@ -171,7 +171,7 @@ public function remove($username, $repository)
171171
{
172172
return $this->delete('repos/'.rawurlencode($username).'/'.rawurlencode($repository));
173173
}
174-
174+
175175
/**
176176
* Get the readme content for a repository by its username and repository name
177177
* @link http://developer.github.com/v3/repos/contents/#get-the-readme
@@ -243,7 +243,7 @@ public function downloads()
243243

244244
/**
245245
* Manage the releases of a repository (Currently Undocumented)
246-
* @link http://developer.github.com/v3/repos/
246+
* @link http://developer.github.com/v3/repos/
247247
*
248248
* @return Releases
249249
*/

lib/Github/Api/Repository/Releases.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function edit($username, $repository, $id, array $params)
7979
*
8080
* @param string $username the user who owns the repo
8181
* @param string $repository the name of the repo
82-
* @param integer $id the id of the release
82+
* @param integer $id the id of the release
8383
*
8484
* @return array
8585
*/

test/Github/Tests/Api/EnterpriseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ protected function getApiClass()
3535
return 'Github\Api\Enterprise';
3636
}
3737
}
38-
38+

0 commit comments

Comments
 (0)