1 | <?php |
||
6 | class GoogleStructuredDataTestToolServiceProvider extends ServiceProvider |
||
7 | { |
||
8 | /** |
||
9 | * Indicates if loading of the provider is deferred. |
||
10 | * |
||
11 | * @var bool |
||
12 | */ |
||
13 | protected $defer = true; |
||
14 | |||
15 | /** |
||
16 | * Bootstrap the application events. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function boot() |
||
32 | |||
33 | /** |
||
34 | * Register the service provider. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function register() |
||
48 | |||
49 | /** |
||
50 | * Get the services provided by the provider. |
||
51 | * |
||
52 | * @return string[] |
||
53 | */ |
||
54 | public function provides() |
||
58 | |||
59 | /** |
||
60 | * @param $app |
||
61 | * @return integer |
||
62 | */ |
||
63 | public function dummy($app) |
||
71 | } |
||
72 |