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();
}