for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Services\Auth\Front;
use App\Foundation\Models\Updaters\Updater;
class UserUpdater extends Updater
{
/** @var \App\Services\Auth\Front\User */
protected $model;
public function performUpdate()
$this->model->email = $this->request->get('email');
$this->model->first_name = $this->request->get('first_name');
$this->model->last_name = $this->request->get('last_name');
$this->model->locale = $this->request->get('locale', 'nl');
}