Skip to content

Remove useless interface, minor fix in readme #5

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

Merged
merged 2 commits into from
Jan 27, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.0.0 - (Not released)

### Changed

- Remove useless interface in BatchException


## 0.2.0 - 2016-01-12

Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This package provides common tools for HTTP Clients:

## Documentation

Please see the [official documentation](http://docs.httplug.io).
Please see the [official documentation](http://docs.php-http.org/en/latest/components/client-common.html).


## Testing
Expand All @@ -46,8 +46,7 @@ Please see our [contributing guide](http://docs.php-http.org/en/latest/developme

## Security

If you discover any security related issues, please contact us at [[email protected]](mailto:[email protected])
or [[email protected]](mailto:[email protected]).
If you discover any security related issues, please contact us at [[email protected]](mailto:[email protected]).


## License
Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
"dev-master": "1.1-dev"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if we did not release 1.0.0 yet, this should be 1.0-dev i think

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, just read #4 - i guess this is the same we did in the other repos, so its fine.

}
},
"prefer-stable": true,
"minimum-stability": "RC"
"prefer-stable": true
}
3 changes: 1 addition & 2 deletions src/Exception/BatchException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Http\Client\Common\Exception;

use Http\Client\Exception;
use Http\Client\Exception\TransferException;
use Http\Client\Common\BatchResult;

Expand All @@ -13,7 +12,7 @@
*
* @author Márk Sági-Kazár <[email protected]>
*/
final class BatchException extends TransferException implements Exception
final class BatchException extends TransferException
{
/**
* @var BatchResult
Expand Down