Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
litvinjuan committed May 3, 2024
2 parents c896dff + 698dddc commit f9b8167
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Authorization/TokenAuthorization.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
class TokenAuthorization
{
private readonly string $token;

private readonly string $sign;

private readonly Carbon $expiresAt;

public function __construct(string $token, string $sign, Carbon $expiresAt)
Expand Down
1 change: 1 addition & 0 deletions src/Authorization/TokenAuthorizationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public static function for(AfipService $service): self
public function with(AfipConfiguration $configuration): self
{
$this->configuration = $configuration;

return $this;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Enum/AfipService.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function getUrl(AfipConfiguration $configuration): string

public function getWsdl(AfipConfiguration $configuration): string
{
$baseWsdlDirectory = __DIR__ . '/../wsdl';
$baseWsdlDirectory = __DIR__.'/../wsdl';

$filename = $this->value;

Expand Down

0 comments on commit f9b8167

Please sign in to comment.