master

laravel/framework

Last updated at: 29/12/2023 09:21

Builder.php

TLDR

This file defines the Builder interface for the Eloquent ORM in the Illuminate\Contracts\Database\Eloquent namespace. It extends the BaseContract interface and is used to improve IDE support.

Methods

N/A

Classes

N/A

<?php

namespace Illuminate\Contracts\Database\Eloquent;

use Illuminate\Contracts\Database\Query\Builder as BaseContract;

/**
 * This interface is intentionally empty and exists to improve IDE support.
 *
 * @mixin \Illuminate\Database\Eloquent\Builder
 */
interface Builder extends BaseContract
{
}