PHP Class App\Services\Form\Server\ServerForm

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

Protected Properties

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

Méthodes publiques

Méthode Description
__construct ( App\Services\Validation\ValidableInterface $validator, App\Repositories\Server\ServerInterface $server ) : void Create a new form service instance.
errors ( ) : array Return validation errors.
save ( array $input ) : boolean Create a new server.
update ( array $input ) : boolean Update an existing server.

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\Server\ServerInterface $server ) : void
$validator App\Services\Validation\ValidableInterface
$server App\Repositories\Server\ServerInterface
Résultat void

errors() public méthode

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

save() public méthode

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

update() public méthode

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

valid() protected méthode

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

Property Details

$server protected_oe property

protected $server

$validator protected_oe property

protected $validator