Skip to content

Commit 93d219c

Browse files
committed
Merge branch 'master' into 2.0-dev
2 parents db7d4fd + 7805ccf commit 93d219c

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

src/AbstractGithubObject.php

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,25 @@
2323
abstract class AbstractGithubObject
2424
{
2525
/**
26-
* @var Registry Options for the GitHub object.
26+
* Options for the GitHub object.
27+
*
28+
* @var Registry
2729
* @since 1.0
2830
*/
2931
protected $options;
3032

3133
/**
32-
* @var Http The HTTP client object to use in sending HTTP requests.
34+
* The HTTP client object to use in sending HTTP requests.
35+
*
36+
* @var Http
3337
* @since 1.0
3438
*/
3539
protected $client;
3640

3741
/**
38-
* @var string The package the object resides in
42+
* The package the object resides in
43+
*
44+
* @var string
3945
* @since 1.0
4046
*/
4147
protected $package = '';

src/Github.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,17 @@
3737
class Github
3838
{
3939
/**
40-
* @var array Options for the GitHub object.
40+
* Options for the GitHub object.
41+
*
42+
* @var array
4143
* @since 1.0
4244
*/
4345
protected $options;
4446

4547
/**
46-
* @var Http The HTTP client object to use in sending HTTP requests.
48+
* The HTTP client object to use in sending HTTP requests.
49+
*
50+
* @var Http
4751
* @since 1.0
4852
*/
4953
protected $client;

0 commit comments

Comments
 (0)