picea-ui/src/Method/FormInterface.php
2020-02-05 16:21:23 -05:00

12 lines
271 B
PHP

<?php
namespace Picea\Ui\Method;
interface FormInterface
{
public function initialize(FormContextInterface $context) : void;
public function validate(FormContextInterface $context) : bool;
public function save(FormContextInterface $context) : void;
}