mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 20:44:01 +00:00
22 lines
493 B
PHP
22 lines
493 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Unity\Processors;
|
|
|
|
use Config;
|
|
use Illuminate\Support\Facades\Http;
|
|
use App\Classes\Modules\Unity\Services\GetContractObligations;
|
|
|
|
class CreateContractProcessor
|
|
{
|
|
private $getContractObligations;
|
|
|
|
public function __construct(GetContractObligations $getContractObligations)
|
|
{
|
|
$this->getContractObligations = $getContractObligations;
|
|
}
|
|
|
|
public function execute(){
|
|
return $this->getContractObligations->execute();
|
|
}
|
|
}
|