Skip to content

Commit

Permalink
Add registry classes for CentralNIC Reseller
Browse files Browse the repository at this point in the history
  • Loading branch information
ben221199 committed Dec 10, 2024
1 parent 9763a4e commit 835fafc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Connections/EPPTCPConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
namespace YOCLIB\EPP\Connections;

use RuntimeException;

use YOCLIB\EPP\EPPConnection;
use YOCLIB\EPP\EPPRegistry;

Expand Down
12 changes: 12 additions & 0 deletions src/Registries/CentralNICReseller.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace YOCLIB\EPP\Registries;

use YOCLIB\EPP\EPPRegistry;

class CentralNICReseller extends EPPRegistry {

public function __construct(){
parent::__construct('ssl://epp.rrpproxy.net',700);
}

}
12 changes: 12 additions & 0 deletions src/Registries/CentralNICResellerTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace YOCLIB\EPP\Registries;

use YOCLIB\EPP\EPPRegistry;

class CentralNICResellerTest extends EPPRegistry {

public function __construct(){
parent::__construct('ssl://epp-ote.rrpproxy.net',1700);
}

}

0 comments on commit 835fafc

Please sign in to comment.