PHP Class App\Services\Form\Recipe\RecipeForm

Afficher le fichier Open project: ngmy/webloyer Class Usage Examples

Protected Properties

Свойство Type Description
$recipe
$validator

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
valid ( array $input ) : boolean Test whether form validator passes.

Method Details

__construct() public méthode

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
Résultat void

errors() public méthode

Return validation errors.
public errors ( ) : array
Résultat array

save() public méthode

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

update() public méthode

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

valid() protected méthode

Test whether form validator passes.
protected valid ( array $input ) : boolean
$input array
Résultat boolean

Property Details

$recipe protected_oe property

protected $recipe

$validator protected_oe property

protected $validator