Casts
1 month ago
Concerns
1 month ago
Factories
1 month ago
Relations
1 month ago
BroadcastableModelEventOccurred.php
1 month ago
BroadcastsEvents.php
6 months ago
Builder.php
1 month ago
Collection.php
1 month ago
HigherOrderBuilderProxy.php
2 years ago
InvalidCastException.php
2 years ago
JsonEncodingException.php
2 years ago
MassAssignmentException.php
2 years ago
MassPrunable.php
6 months ago
MissingAttributeException.php
1 month ago
Model.php
1 month ago
ModelNotFoundException.php
1 month ago
PendingHasThroughRelationship.php
1 month ago
Prunable.php
2 years ago
QueueEntityResolver.php
2 years ago
RelationNotFoundException.php
2 years ago
Scope.php
2 years ago
SoftDeletes.php
1 month ago
SoftDeletingScope.php
1 month ago
Scope.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Database\Eloquent; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface Scope |
| 7 | { |
| 8 | /** |
| 9 | * Apply the scope to a given Eloquent query builder. |
| 10 | * |
| 11 | * @param \Illuminate\Database\Eloquent\Builder $builder |
| 12 | * @param \Illuminate\Database\Eloquent\Model $model |
| 13 | * @return void |
| 14 | */ |
| 15 | public function apply(Builder $builder, Model $model); |
| 16 | } |
| 17 |