Skip to content

Commit 7805ccf

Browse files
committed
Move descriptions
1 parent 27dcf6a commit 7805ccf

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

src/AbstractGithubObject.php

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

3032
/**
31-
* @var Http The HTTP client object to use in sending HTTP requests.
33+
* The HTTP client object to use in sending HTTP requests.
34+
*
35+
* @var Http
3236
* @since 1.0
3337
*/
3438
protected $client;
3539

3640
/**
37-
* @var string The package the object resides in
41+
* The package the object resides in
42+
*
43+
* @var string
3844
* @since 1.0
3945
*/
4046
protected $package = '';

src/Github.php

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

4446
/**
45-
* @var Http The HTTP client object to use in sending HTTP requests.
47+
* The HTTP client object to use in sending HTTP requests.
48+
*
49+
* @var Http
4650
* @since 1.0
4751
*/
4852
protected $client;

0 commit comments

Comments
 (0)