Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 556 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (19 loc) · 556 Bytes

ZipStream Readme for Contributors

Code styling

Indention

For spaces are used to indent code. The convention is K&R

Comments

Double Slashes are used for an one line comment.

Classes, Variables, Methods etc:

/**
 * My comment
 *
 * @myanotation like @param etc.
 */

Pull requests

Feel free to submit pull requests.

Testing

For every new feature please write a new PHPUnit test.

Before every commit execute ./vendor/bin/phpunit to check if your changes wrecked something: