create config and .env.example for harim vebservice

This commit is contained in:
2025-09-16 12:08:59 +03:30
parent 5d13cc955b
commit f6c13fe1b2
7 changed files with 70 additions and 16 deletions

View File

@@ -22,9 +22,9 @@ class ConfirmGuaranteeLetterNeedListener implements ShouldQueue
public function __construct()
{
$this->url = config('harim_web_services.reject.url');
$this->username = config('harim_web_services.reject.username');
$this->password = config('harim_web_services.reject.password');
$this->url = config('harim_web_services.Guarantee_Letter_Need.url');
$this->username = config('harim_web_services.Guarantee_Letter_Need.username');
$this->password = config('harim_web_services.Guarantee_Letter_Need.password');
}
/**

View File

@@ -22,9 +22,9 @@ class ConfirmNoRoadAccessNeedListener implements ShouldQueue
public function __construct()
{
$this->url = config('harim_web_services.reject.url');
$this->username = config('harim_web_services.reject.username');
$this->password = config('harim_web_services.reject.password');
$this->url = config('harim_web_services.No_Need_Access.url');
$this->username = config('harim_web_services.No_Need_Access.username');
$this->password = config('harim_web_services.No_Need_Access.password');
}
/**

View File

@@ -22,9 +22,9 @@ class ConfirmRoadAccessEditNeedListener implements ShouldQueue
public function __construct()
{
$this->url = config('harim_web_services.reject.url');
$this->username = config('harim_web_services.reject.username');
$this->password = config('harim_web_services.reject.password');
$this->url = config('harim_web_services.Edit_Need_Access.url');
$this->username = config('harim_web_services.Edit_Need_Access.username');
$this->password = config('harim_web_services.Edit_Need_Access.password');
}
/**

View File

@@ -22,11 +22,12 @@ class ConfirmRoadAccessNeedListener implements ShouldQueue
public function __construct()
{
$this->url = config('harim_web_services.reject.url');
$this->username = config('harim_web_services.reject.username');
$this->password = config('harim_web_services.reject.password');
$this->url = config('harim_web_services.Need_Access.url');
$this->username = config('harim_web_services.Need_Access.username');
$this->password = config('harim_web_services.Need_Access.password');
}
/**
* Handle the event.
* @throws RequestException

View File

@@ -22,9 +22,9 @@ class RejectRequestListener implements ShouldQueue
public function __construct()
{
$this->url = config('harim_web_services.reject.url');
$this->username = config('harim_web_services.reject.username');
$this->password = config('harim_web_services.reject.password');
$this->url = config('harim_web_services.Reject.url');
$this->username = config('harim_web_services.Reject.username');
$this->password = config('harim_web_services.Reject.password');
}
/**