-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor #2
base: master
Are you sure you want to change the base?
Refactor #2
Conversation
Please add license and copyright to every single .php file: /**
* Aero.io API client for PHP
*
* @copyright Copyright 2012, aero.io (http://aero.io)
* @license The MIT License
*/ |
Please setup Travis CI to run the tests on each commit in master, and add a travis badge to the "Readme" file. Make sure it will run them on PHP versions: 5.2, 5.3 and 5.4 (if available) |
* Engine interface. | ||
* | ||
* Interface that should be used by all of the supplied engines. | ||
*/ | ||
interface Engine { | ||
public function execute($request); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing comment.
* | ||
* @var array | ||
*/ | ||
protected $schema = array( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This schema is a bit incomplete, please include not only the main attributes, but all of them, except checksum
and announced
.
You've used tabs instead of 4 spaces in a lot of files, for example |
|
You have no tests for the |
Final changes and additions.