mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Support;
|
|
|
|
interface DeferrableProvider
|
|
{
|
|
/**
|
|
* Get the services provided by the provider.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function provides();
|
|
}
|