App\Services\Form\User\UserForm::update PHP Method

update() public method

Update an existing user.
public update ( array $input ) : boolean
$input array Data to update a user
return boolean
    public function update(array $input)
    {
        if (!$this->valid($input)) {
            return false;
        }
        DB::transaction(function () use($input) {
            $this->user->update($input);
        });
        return true;
    }

Usage Example

Beispiel #1
0
 public function test_Should_FailToUpdateRole_When_ValidationFails()
 {
     $this->mockValidator->shouldReceive('with')->once()->andReturn($this->mockValidator);
     $this->mockValidator->shouldReceive('passes')->once()->andReturn(false);
     $form = new UserForm($this->mockValidator, $this->mockUserRepository);
     $result = $form->update([]);
     $this->assertFalse($result, 'Expected update to fail.');
 }