psalm-plugin-laravel/stubs/LumenApplication.stubphp
2021-06-21 17:38:17 -07:00

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()
{
}
}