12 lines
271 B
PHP
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;
|
|
} |