From 16ee22dc65b382a7be54829716769ae5f23f7f7d Mon Sep 17 00:00:00 2001 From: Patrik Karisch Date: Mon, 7 Mar 2016 00:39:23 +0100 Subject: [PATCH] Add a meaningful pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..2a25088 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,36 @@ +| Q | A +| ------------------ | --- +| Bug fix? | yes +| New feature? | yes +| BC breaks? | yes +| Deprecations? | yes +| Fixed tickets | fixes #issuenum +| Related issues/PRs | #issuenum +| License | MIT + +#### What's in this PR? + +Explain the contents of the PR. + +#### Why? + +Which problem does the PR fix? + +#### Example Usage + +~~~php +$foo = new Foo(); + +// Now we can do +$foo->doSomething(); + +// Remove this section if not needed +~~~ + +#### BC Breaks/Deprecations + +Describe BC breaks/deprecations here (Remove this section if not needed). + +#### To Do + +- [ ] Create tests