Skip to content

Commit 21cba01

Browse files
author
Abdalrhman Emad Saad
committed
feat: add Executable insterface
1 parent 2f10131 commit 21cba01

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)