HighSpeaker/vendor/illuminate/contracts/Support/DeferrableProvider.php

14 lines
207 B
PHP
Raw Permalink Normal View History

2022-12-24 19:40:40 +05:30
<?php
namespace Illuminate\Contracts\Support;
interface DeferrableProvider
{
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides();
}