Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php namespace Illuminate\Contracts\Support; interface DeferrableProvider { /** * Get the services provided by the provider. * * @return array */ public function provides(); }
<?php
namespace Illuminate\Contracts\Support;
interface DeferrableProvider
{
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides();
}