blob: cfecf8bf7c3fc160614dd650d1b1ac8f39b366c2 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface DeferrableProvider
6{
7 /**
8 * Get the services provided by the provider.
9 *
10 * @return array
11 */
12 public function provides();
13}