mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
8a28eb1790
This reverts merge request !5
37 lines
880 B
PHP
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);
|
|
}
|
|
} |