Files
izyim/app/Classes/Modules/ControllersLogic/Contacts/UpdateContactLogic.php
T
2019-03-07 15:31:16 +08:00

37 lines
880 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, Request $request)
{
$object = new ContactObject($request->input('name'), $request->input('designation'), $request->input('contact'), $request->input('email'));
return $this->updateContact->execute($id, $object);
}
}