| 1 | <?php |
||
| 22 | class LocalStorageAction implements Action |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * The dir path of YAML file. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $yamlFile; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Constructor. |
||
| 33 | * |
||
| 34 | * @param string|null $yamlFile The dir path of YAML file |
||
| 35 | */ |
||
| 36 | public function __construct($yamlFile = null) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function execute(FormInterface $form) |
||
| 60 | } |
||
| 61 |