mirror of
https://github.com/flarum/core.git
synced 2025-07-31 21:50:50 +02:00
chore: Setup PHPStan Level 5 (#3553)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?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);
|
||||
}
|
Reference in New Issue
Block a user