Skip to content

Commit 6cf7559

Browse files
committed
fix styling of comments
1 parent 4033c2b commit 6cf7559

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

lib/Github/Api/Apps.php

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,12 @@ public function findInstallations()
5454
}
5555

5656
/**
57-
* Get an installation of the application
57+
* Get an installation of the application.
5858
*
5959
* @link https://developer.github.com/v3/apps/#get-an-installation
6060
*
6161
* @param $installation_id An integration installation id
62+
*
6263
* @return array
6364
*/
6465
public function getInstallation($installation_id)
@@ -67,11 +68,12 @@ public function getInstallation($installation_id)
6768
}
6869

6970
/**
70-
* Get an installation of the application for an organization
71+
* Get an installation of the application for an organization.
7172
*
7273
* @link https://developer.github.com/v3/apps/#get-an-organization-installation
7374
*
7475
* @param $org An organization
76+
*
7577
* @return array
7678
*/
7779
public function getInstallationForOrganization($org)
@@ -80,12 +82,13 @@ public function getInstallationForOrganization($org)
8082
}
8183

8284
/**
83-
* Get an installation of the application for a repository
85+
* Get an installation of the application for a repository.
8486
*
8587
* @link https://developer.github.com/v3/apps/#get-a-repository-installation
8688
*
8789
* @param $owner the owner of a repository
8890
* @param $repo the name of the repository
91+
*
8992
* @return array
9093
*/
9194
public function getInstallationForRepo($owner, $repo)
@@ -94,11 +97,12 @@ public function getInstallationForRepo($owner, $repo)
9497
}
9598

9699
/**
97-
* Get an installation of the application for a user
100+
* Get an installation of the application for a user.
98101
*
99102
* @link https://developer.github.com/v3/apps/#get-a-user-installation
100103
*
101104
* @param $username
105+
*
102106
* @return array
103107
*/
104108
public function getInstallationForUser($username)
@@ -107,7 +111,7 @@ public function getInstallationForUser($username)
107111
}
108112

109113
/**
110-
* Delete an installation of the application
114+
* Delete an installation of the application.
111115
*
112116
* @link https://developer.github.com/v3/apps/#delete-an-installation
113117
*

0 commit comments

Comments
 (0)