summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/html/src/Contract/FormSubmitElement.php
blob: 4909df81611f56240922b76127696e611e4be7ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace ipl\Html\Contract;

interface FormSubmitElement extends FormElement
{
    /**
     * Get whether the element has been pressed
     *
     * @return bool
     */
    public function hasBeenPressed();
}