Skip to content

Commit

Permalink
Merge pull request #154 from ruudk/patch-1
Browse files Browse the repository at this point in the history
PostTransactionEvent > Remove strict return type to allow null
  • Loading branch information
gregurco authored Nov 17, 2017
2 parents 688da53 + 05cd146 commit c7f9173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Events/PostTransactionEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public function __construct(ResponseInterface $response = null, string $serviceN
*
* This returns the transaction we are working with.
*
* @return ResponseInterface
* @return ResponseInterface|null
*/
public function getTransaction() : ResponseInterface
public function getTransaction()
{
return $this->response;
}
Expand Down

0 comments on commit c7f9173

Please sign in to comment.