You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace Example;
use Mammoth\Contact;
class ContactController {
public function contact() {
$contactFrom = new Contact\Form();
if ($contactFrom->process()) {
return;
}
$this->render('contact');
}
}