PHP Class App\Services\Form\Recipe\RecipeForm

Show file Open project: ngmy/webloyer Class Usage Examples

Protected Properties

Property Type Description
$recipe
$validator

Public Methods

Method Description
__construct ( App\Services\Validation\ValidableInterface $validator, App\Repositories\Recipe\RecipeInterface $recipe ) : void Create a new form service instance.
errors ( ) : array Return validation errors.
save ( array $input ) : boolean Create a new recipe.
update ( array $input ) : boolean Update an existing recipe.

Protected Methods

Method Description
valid ( array $input ) : boolean Test whether form validator passes.

Method Details

__construct() public method

Create a new form service instance.
public __construct ( App\Services\Validation\ValidableInterface $validator, App\Repositories\Recipe\RecipeInterface $recipe ) : void
$validator App\Services\Validation\ValidableInterface
$recipe App\Repositories\Recipe\RecipeInterface
return void

errors() public method

Return validation errors.
public errors ( ) : array
return array

save() public method

Create a new recipe.
public save ( array $input ) : boolean
$input array Data to create a recipe
return boolean

update() public method

Update an existing recipe.
public update ( array $input ) : boolean
$input array Data to update a recipe
return boolean

valid() protected method

Test whether form validator passes.
protected valid ( array $input ) : boolean
$input array
return boolean

Property Details

$recipe protected property

protected $recipe

$validator protected property

protected $validator