Skip to content

Commit 7d57343

Browse files
committed
Merge pull request #5 from php-http/feature/minor-fix
Remove useless interface, minor fix in readme, closes #3, closes #4
2 parents 1c9c338 + 25ea496 commit 7d57343

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.0.0 - 2016-01-27
4+
5+
### Changed
6+
7+
- Remove useless interface in BatchException
8+
39

410
## 0.2.0 - 2016-01-12
511

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This package provides common tools for HTTP Clients:
2929

3030
## Documentation
3131

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

3434

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

4747
## Security
4848

49-
If you discover any security related issues, please contact us at [[email protected]](mailto:[email protected])
50-
49+
If you discover any security related issues, please contact us at [[email protected]](mailto:[email protected]).
5150

5251

5352
## License

composer.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
},
3131
"extra": {
3232
"branch-alias": {
33-
"dev-master": "0.3-dev"
33+
"dev-master": "1.1-dev"
3434
}
3535
},
36-
"prefer-stable": true,
37-
"minimum-stability": "RC"
36+
"prefer-stable": true
3837
}

src/Exception/BatchException.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Http\Client\Common\Exception;
44

5-
use Http\Client\Exception;
65
use Http\Client\Exception\TransferException;
76
use Http\Client\Common\BatchResult;
87

@@ -13,7 +12,7 @@
1312
*
1413
* @author Márk Sági-Kazár <[email protected]>
1514
*/
16-
final class BatchException extends TransferException implements Exception
15+
final class BatchException extends TransferException
1716
{
1817
/**
1918
* @var BatchResult

0 commit comments

Comments
 (0)