framework/php-packages/phpstan/stubs/Illuminate/Support/ServiceProvider.stub

24 lines
379 B
Plaintext
Raw Normal View History

2022-09-14 22:23:56 +08:00
<?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);
}