Skip to content

Commit adf45ac

Browse files
committed
Minor changes
1 parent 04d28d9 commit adf45ac

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

src/Exception.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@
99
*/
1010
interface Exception
1111
{
12-
1312
}

src/Exception/BatchException.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44

55
use Http\Client\BatchResult;
66
use Http\Client\Exception;
7-
use Psr\Http\Message\RequestInterface;
87

98
/**
109
* This exception is thrown when a batch of requests led to at least one failure.
1110
*
1211
* It holds the response/exception pairs and gives access to a BatchResult with the successful responses.
1312
*
14-
*@author Márk Sági-Kazár <[email protected]>
13+
* @author Márk Sági-Kazár <[email protected]>
1514
*/
1615
final class BatchException extends \RuntimeException implements Exception
1716
{

src/Exception/RequestException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
/**
88
* Base exception for when a request failed.
99
*
10-
* This can be because of network problems or the status code of the response.
11-
*
1210
* @author Márk Sági-Kazár <[email protected]>
1311
*/
1412
class RequestException extends TransferException

src/Exception/TransferException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Http\Client\Exception;
66

77
/**
8-
* Base exception for all php-http exceptions.
8+
* Base exception for transfer related exceptions.
99
*
1010
* @author Márk Sági-Kazár <[email protected]>
1111
*/

0 commit comments

Comments
 (0)