Skip to content

Commit

Permalink
Merge pull request #5 from php-http/feature/minor-fix
Browse files Browse the repository at this point in the history
Remove useless interface, minor fix in readme, closes #3, closes #4
  • Loading branch information
sagikazarmark committed Jan 27, 2016
2 parents 1c9c338 + 25ea496 commit 7d57343
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
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 - 2016-01-27

### 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 [security@httplug.io](mailto:security@httplug.io)
or [security@php-http.org](mailto:security@php-http.org).
If you discover any security related issues, please contact us at [security@php-http.org](mailto:security@php-http.org).


## 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"
}
},
"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 <mark.sagikazar@gmail.com>
*/
final class BatchException extends TransferException implements Exception
final class BatchException extends TransferException
{
/**
* @var BatchResult
Expand Down

0 comments on commit 7d57343

Please sign in to comment.