From d0079ce1e82e3fdb8729aac1c715740975645181 Mon Sep 17 00:00:00 2001 From: Percy Mamedy Date: Fri, 12 Jul 2024 11:45:04 +0400 Subject: [PATCH] fix code styles (#6) --- src/Connectors/SoapConnector.php | 3 +-- src/Data/Intermediary.php | 3 +-- src/Data/Registration.php | 3 +-- src/Requests/ShowBrokerRequest.php | 3 +-- src/Responses/SoapResponse.php | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/Connectors/SoapConnector.php b/src/Connectors/SoapConnector.php index 53bf0b7..6e7395e 100644 --- a/src/Connectors/SoapConnector.php +++ b/src/Connectors/SoapConnector.php @@ -19,8 +19,7 @@ public function __construct( protected string $wsdl, protected string $key, protected array $options = [] - ) { - } + ) {} /** * {@inheritdoc} diff --git a/src/Data/Intermediary.php b/src/Data/Intermediary.php index 4d252a1..7f3c7db 100644 --- a/src/Data/Intermediary.php +++ b/src/Data/Intermediary.php @@ -20,8 +20,7 @@ public function __construct( public ?string $siren = null, public ?string $denomination = null, public array $registrations = [], - ) { - } + ) {} /** * Determine if the intermediary is registered for a given category. diff --git a/src/Data/Registration.php b/src/Data/Registration.php index 5eae101..ecbe3be 100644 --- a/src/Data/Registration.php +++ b/src/Data/Registration.php @@ -18,8 +18,7 @@ public function __construct( public ?string $status = null, public ?Carbon $registrationDate = null, public ?Carbon $deletionDate = null, - ) { - } + ) {} /** * Determine if the registration matches the given category. diff --git a/src/Requests/ShowBrokerRequest.php b/src/Requests/ShowBrokerRequest.php index 8430e3a..0cee483 100644 --- a/src/Requests/ShowBrokerRequest.php +++ b/src/Requests/ShowBrokerRequest.php @@ -18,8 +18,7 @@ class ShowBrokerRequest implements SoapRequest */ public function __construct( protected string $orias - ) { - } + ) {} /** * {@inheritdoc} diff --git a/src/Responses/SoapResponse.php b/src/Responses/SoapResponse.php index b3e304c..e3bf7f5 100644 --- a/src/Responses/SoapResponse.php +++ b/src/Responses/SoapResponse.php @@ -21,8 +21,7 @@ public function __construct( protected SoapRequest $request, protected ?Response $response = null, protected ?SoapFault $exception = null - ) { - } + ) {} /** * Get DTO from the response.