File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ $comment = $client->api('pull_request')->comments()->create('KnpLabs', 'php-gith
37
37
'path' => 'README.markdown',
38
38
'position' => 37,
39
39
'line' => 31
40
- );
40
+ )) ;
41
41
```
42
42
43
43
This returns the details of the comment.
@@ -50,7 +50,7 @@ This returns the details of the comment.
50
50
$comment = $client->api('pull_request')->comments()->create('KnpLabs', 'php-github-api', 8, array(
51
51
'body' => 'Yeah! Really nice change',
52
52
'in_reply_to' => 2
53
- );
53
+ )) ;
54
54
```
55
55
56
56
This returns the details of the comment.
@@ -62,7 +62,7 @@ This returns the details of the comment.
62
62
``` php
63
63
$comment = $client->api('pull_request')->comments()->update('KnpLabs', 'php-github-api', 2, array(
64
64
'body' => 'Hell Yeah! Awesome change!'
65
- );
65
+ )) ;
66
66
```
67
67
68
68
This returns the details of the updated comment.
You can’t perform that action at this time.
0 commit comments