1
0
mirror of https://github.com/flarum/core.git synced 2025-08-10 10:24:46 +02:00

chore: recover container prop

This commit is contained in:
Sami Mazouz
2023-08-11 10:17:27 +01:00
parent d056e339a4
commit 0a89c3bd53

View File

@@ -9,9 +9,17 @@
namespace Flarum\Foundation;
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
use Illuminate\Support\ServiceProvider;
abstract class AbstractServiceProvider extends ServiceProvider
{
//
protected ApplicationContract $container;
public function __construct(ApplicationContract $app)
{
parent::__construct($app);
$this->container = $app;
}
}