PHP Class App\Services\Form\Project\ProjectForm

Show file Open project: ngmy/webloyer Class Usage Examples

Protected Properties

Property Type Description
$project
$validator

Public Methods

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

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\Project\ProjectInterface $project ) : void
$validator App\Services\Validation\ValidableInterface
$project App\Repositories\Project\ProjectInterface
return void

errors() public method

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

save() public method

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

update() public method

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

valid() protected method

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

Property Details

$project protected property

protected $project

$validator protected property

protected $validator