This commit is contained in:
2025-03-14 17:42:58 +03:00
commit a283d2cf37
13 changed files with 395 additions and 0 deletions

15
app/forms/UserForm.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace Itguild\App\forms;
use Itguild\Form2\Form;
class UserForm extends Form
{
public function load(array $arr): void
{
parent::load($arr);
}
}