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