Last active
December 20, 2017 11:42
-
-
Save wake/7f1ef97edc159ccac112aa9e24be3f84 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Silex form builder 檔案 */ | |
$form = $app->form () | |
->add ('submit', SubmitType::class, ['block_name' => 'buttons_start']) | |
->add ('reset', ResetType::class, ['block_name' => 'buttons_end']) | |
->getForm (); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment