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