File "Scope.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/vendor/wpfluent/framework/src/WPFluent/Database/Orm/Scope.php
File size: 365 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FluentForm\Framework\Database\Orm;
interface Scope
{
/**
* Apply the scope to a given Eloquent query builder.
*
* @param \FluentForm\Framework\Database\Orm\Builder $builder
* @param \FluentForm\Framework\Database\Orm\Model $model
* @return void
*/
public function apply(Builder $builder, Model $model);
}