summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/html/src/Contract/FormSubmitElement.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ipl/html/src/Contract/FormSubmitElement.php')
-rw-r--r--vendor/ipl/html/src/Contract/FormSubmitElement.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/ipl/html/src/Contract/FormSubmitElement.php b/vendor/ipl/html/src/Contract/FormSubmitElement.php
new file mode 100644
index 0000000..4909df8
--- /dev/null
+++ b/vendor/ipl/html/src/Contract/FormSubmitElement.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace ipl\Html\Contract;
+
+interface FormSubmitElement extends FormElement
+{
+ /**
+ * Get whether the element has been pressed
+ *
+ * @return bool
+ */
+ public function hasBeenPressed();
+}