master

laravel/framework

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

DeferrableProvider.php

TLDR

This file defines the DeferrableProvider interface in the Illuminate\Contracts\Support namespace. The interface includes a method provides().

Methods

provides

This method is defined in the DeferrableProvider interface. It returns an array of services provided by the provider.

<?php

namespace Illuminate\Contracts\Support;

interface DeferrableProvider
{
    /**
     * Get the services provided by the provider.
     *
     * @return array
     */
    public function provides();
}