App\Services\Form\Recipe\RecipeForm::save PHP Method

save() public method

Create a new recipe.
public save ( array $input ) : boolean
$input array Data to create a recipe
return boolean
    public function save(array $input)
    {
        if (!$this->valid($input)) {
            return false;
        }
        return $this->recipe->create($input);
    }

Usage Example

Example #1
0
 public function test_Should_FailToSave_When_ValidationFails()
 {
     $this->mockValidator->shouldReceive('with')->once()->andReturn($this->mockValidator);
     $this->mockValidator->shouldReceive('passes')->once()->andReturn(false);
     $form = new RecipeForm($this->mockValidator, $this->mockRecipeRepository);
     $result = $form->save([]);
     $this->assertFalse($result, 'Expected save to fail.');
 }