View file vendor/illuminate/contracts/Support/DeferrableProvider.php

File size: 207B
<?php

namespace Illuminate\Contracts\Support;

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