We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f10131 commit 21cba01Copy full SHA for 21cba01
src/Engines/Contracts/Executable.php
@@ -0,0 +1,15 @@
1
+<?php
2
+
3
+namespace Kettasoft\Filterable\Engines\Contracts;
4
5
+use Illuminate\Database\Eloquent\Builder;
6
7
+interface Executable
8
+{
9
+ /**
10
+ * Execute using the given query builder instance.
11
+ * @param \Illuminate\Database\Eloquent\Builder $builder
12
+ * @return \Illuminate\Database\Eloquent\Builder
13
+ */
14
+ public function execute(Builder $builder);
15
+}
0 commit comments