Files
izyim/app/Classes/Modules/ControllersLogic/Contacts/UpdateContactLogic.php
T
2019-05-09 12:26:14 +08:00

36 lines
932 B
PHP

<?php
/**
* Created by PhpStorm.
* User: user
* Date: 05/03/2019
* Time: 2:35 PM
*/
namespace App\Modules\ControllerLogic\Contacts;
use App\Classes\Modules\Contacts\DataTransferObjects\ContactObject;
use App\Classes\Modules\Contacts\Services\UpdateContact;
use Illuminate\Http\Request;
class UpdateContactLogic
{
/** @var UpdateContact */
private $updateContact;
/**
* UpdateContactLogic constructor.
* @param UpdateContact $updateContact
*/
public function __construct(UpdateContact $updateContact)
{
$this->updateContact = $updateContact;
}
public function execute(int $id, string $referenceId, int $type, Request $request)
{
$object = new ContactObject($type, $referenceId, $request->input('name'), $request->input('designation'), $request->input('contact'), $request->input('email'));
return $this->updateContact->execute($id, $object);
}
}