mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 22:53:37 +08:00
24 lines
379 B
Plaintext
24 lines
379 B
Plaintext
|
<?php
|
||
|
|
||
|
namespace Illuminate\Support;
|
||
|
|
||
|
use Illuminate\Contracts\Container\Container;
|
||
|
|
||
|
abstract class ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* The application instance.
|
||
|
*
|
||
|
* @var Container
|
||
|
*/
|
||
|
protected $app;
|
||
|
|
||
|
/**
|
||
|
* Create a new service provider instance.
|
||
|
*
|
||
|
* @param Container $app
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct($app);
|
||
|
}
|