口腔客户管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 556B

2 years ago
12345678910111213141516171819202122232425
  1. # ZipStream Readme for Contributors
  2. ## Code styling
  3. ### Indention
  4. For spaces are used to indent code. The convention is [K&R](http://en.wikipedia.org/wiki/Indent_style#K&R)
  5. ### Comments
  6. Double Slashes are used for an one line comment.
  7. Classes, Variables, Methods etc:
  8. ```php
  9. /**
  10. * My comment
  11. *
  12. * @myanotation like @param etc.
  13. */
  14. ```
  15. ## Pull requests
  16. Feel free to submit pull requests.
  17. ## Testing
  18. For every new feature please write a new PHPUnit test.
  19. Before every commit execute `./vendor/bin/phpunit` to check if your changes wrecked something: