From 52c88ca3d1ac071a34908e1d56c0381556d14473 Mon Sep 17 00:00:00 2001 From: Daniel Lienert Date: Sun, 29 Mar 2015 13:43:34 +0200 Subject: [PATCH 1/4] [FIX] Add missing closing bracket in pullRequest example code --- doc/pull_requests.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/pull_requests.md b/doc/pull_requests.md index 2b952b35b1f..6c9b3f746d2 100644 --- a/doc/pull_requests.md +++ b/doc/pull_requests.md @@ -67,6 +67,7 @@ $pullRequest = $client->api('pull_request')->create('ezsystems', 'ezpublish', ar 'head' => 'testbranch', 'title' => 'My nifty pull request', 'body' => 'This pull request contains a bunch of enhancements and bug-fixes, happily shared with you' + ) ); ``` From a0d3b846ed7c288b0b3a69b111fe5382ea1c3645 Mon Sep 17 00:00:00 2001 From: Daniel Lienert Date: Mon, 30 Mar 2015 08:47:13 +0200 Subject: [PATCH 2/4] Update pull_requests.md --- doc/pull_requests.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/pull_requests.md b/doc/pull_requests.md index 6c9b3f746d2..f92bf7657f5 100644 --- a/doc/pull_requests.md +++ b/doc/pull_requests.md @@ -67,8 +67,7 @@ $pullRequest = $client->api('pull_request')->create('ezsystems', 'ezpublish', ar 'head' => 'testbranch', 'title' => 'My nifty pull request', 'body' => 'This pull request contains a bunch of enhancements and bug-fixes, happily shared with you' - ) -); + )); ``` This returns the details of the pull request. From c0e29472d0c3e4608d323a114ebc82b545e6a999 Mon Sep 17 00:00:00 2001 From: Daniel Lienert Date: Mon, 30 Mar 2015 10:05:33 +0200 Subject: [PATCH 3/4] Update pull_requests.md --- doc/pull_requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pull_requests.md b/doc/pull_requests.md index f92bf7657f5..711fcc91e6b 100644 --- a/doc/pull_requests.md +++ b/doc/pull_requests.md @@ -83,7 +83,7 @@ $pullRequest = $client->api('pull_request')->create('ezsystems', 'ezpublish', ar 'base' => 'master', 'head' => 'testbranch', 'issue' => 15 -); +)); ``` This returns the details of the pull request. From 7e2a63013b526708604a54a7534b12e50a262a52 Mon Sep 17 00:00:00 2001 From: Daniel Lienert Date: Mon, 30 Mar 2015 10:06:55 +0200 Subject: [PATCH 4/4] Update pull_requests.md --- doc/pull_requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pull_requests.md b/doc/pull_requests.md index 711fcc91e6b..ec181c67bc2 100644 --- a/doc/pull_requests.md +++ b/doc/pull_requests.md @@ -67,7 +67,7 @@ $pullRequest = $client->api('pull_request')->create('ezsystems', 'ezpublish', ar 'head' => 'testbranch', 'title' => 'My nifty pull request', 'body' => 'This pull request contains a bunch of enhancements and bug-fixes, happily shared with you' - )); +)); ``` This returns the details of the pull request.