Compare commits

..

No commits in common. "master" and "0.1.3" have entirely different histories.

View File

@ -31,9 +31,9 @@ class ActiveForm
* @param string $action
* @return void
*/
public function beginForm(string $action, string $enctype = 'application/x-www-form-urlencoded'): void
public function beginForm(string $action): void
{
echo "<form method='POST' action='$action' enctype='$enctype'>";
echo "<form method='POST' action='$action'>";
}
/**