mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
27 lines
458 B
Plaintext
27 lines
458 B
Plaintext
|
<?php
|
||
|
|
||
|
namespace Laravel\Lumen;
|
||
|
|
||
|
use Illuminate\Container\Container;
|
||
|
|
||
|
class Application extends Container
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Register a service provider with the application.
|
||
|
*
|
||
|
* @param \Illuminate\Support\ServiceProvider|string $provider
|
||
|
* @return \Illuminate\Support\ServiceProvider
|
||
|
*/
|
||
|
public function register($provider)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Boots the registered providers.
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
}
|
||
|
}
|