Builder.php
1 month ago
Castable.php
1 month ago
CastsAttributes.php
1 month ago
CastsInboundAttributes.php
2 years ago
DeviatesCastableAttributes.php
2 years ago
SerializesCastableAttributes.php
2 years ago
SupportsPartialRelations.php
2 years ago
Builder.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Database\Eloquent; |
| 4 | |
| 5 | use IAWPSCOPED\Illuminate\Contracts\Database\Query\Builder as BaseContract; |
| 6 | /** |
| 7 | * This interface is intentionally empty and exists to improve IDE support. |
| 8 | * |
| 9 | * @mixin \Illuminate\Database\Eloquent\Builder |
| 10 | * @internal |
| 11 | */ |
| 12 | interface Builder extends BaseContract |
| 13 | { |
| 14 | } |
| 15 |