Skip to content

Commit

Permalink
feat: Adicionando suporte ao ticket_number no comando domain_info
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosanches committed Dec 18, 2023
1 parent b80db84 commit e98d2f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Obs: O parâmetro current_expiration_date é o domain:crDate de retorno do coman
```php
$eppClient = EppClient::factory('user', 'password');
$domain = ResourceFactory::factory($eppClient, 'domain');
$return = $domain->info(['name' => 'yoursite6.com.br']);
$return = $domain->info(['name' => 'yoursite6.com.br', 'ticket_number' => '']);
var_dump($return->getResponse());
```

Expand Down
1 change: 1 addition & 0 deletions src/DTO/Domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ class Domain extends AbstractDTO
public ?string $dns_1;
public ?string $dns_2;
public ?string $org_id;
public ?string $ticket_number;
public int $auto_renew = 0;
}

0 comments on commit e98d2f0

Please sign in to comment.