16 lines
273 B
PHP
Executable File
16 lines
273 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Ship\Models;
|
|
|
|
interface Scope
|
|
{
|
|
/**
|
|
* Apply the scope to a given Eloquent query builder.
|
|
*
|
|
* @param Builder $builder
|
|
* @param Model $model
|
|
* @return void
|
|
*/
|
|
public function apply(Builder $builder, Model $model);
|
|
}
|