Skip to content

Commit

Permalink
fix code styles (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
percymamedy authored Jul 12, 2024
1 parent f8958b8 commit d0079ce
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions src/Connectors/SoapConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ public function __construct(
protected string $wsdl,
protected string $key,
protected array $options = []
) {
}
) {}

/**
* {@inheritdoc}
Expand Down
3 changes: 1 addition & 2 deletions src/Data/Intermediary.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions src/Data/Registration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions src/Requests/ShowBrokerRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ class ShowBrokerRequest implements SoapRequest
*/
public function __construct(
protected string $orias
) {
}
) {}

/**
* {@inheritdoc}
Expand Down
3 changes: 1 addition & 2 deletions src/Responses/SoapResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ public function __construct(
protected SoapRequest $request,
protected ?Response $response = null,
protected ?SoapFault $exception = null
) {
}
) {}

/**
* Get DTO from the response.
Expand Down

0 comments on commit d0079ce

Please sign in to comment.