Skip to content

Commit

Permalink
Run new version of php-cs-fixer and reflow some text
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Jan 5, 2024
1 parent a991d5d commit 9c8f1a5
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions src/MinFraud/ReportTransaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace MaxMind\MinFraud;

use MaxMind\Exception\AuthenticationException;
use MaxMind\Exception\HttpException;
use MaxMind\Exception\InvalidInputException;
use MaxMind\Exception\InvalidRequestException;
use MaxMind\Exception\WebServiceException;

class ReportTransaction extends ServiceClient
{
Expand Down Expand Up @@ -37,15 +41,17 @@ public function __construct(
/**
* @param array $values the transaction parameters
*
* @throws InvalidInputException when the request has missing or invalid
* data
* @throws \MaxMind\Exception\AuthenticationException when there is an issue authenticating the
* request
* @throws \MaxMind\Exception\InvalidRequestException when the request is invalid for some
* other reason, e.g., invalid JSON in the POST.
* @throws \MaxMind\Exception\HttpException when an unexpected HTTP error occurs
* @throws \MaxMind\Exception\WebServiceException when some other error occurs. This also
* serves as the base class for the above exceptions.
* @throws InvalidInputException when the request has missing or invalid
* data.
* @throws AuthenticationException when there is an issue authenticating
* the request.
* @throws InvalidRequestException when the request is invalid for some
* other reason, e.g., invalid JSON in the
* POST.
* @throws HttpException when an unexpected HTTP error occurs
* @throws WebServiceException when some other error occurs. This also
* serves as the base class for the above
* exceptions.
*/
public function report(array $values): void
{
Expand Down

0 comments on commit 9c8f1a5

Please sign in to comment.