2017-09-22 14:02:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Engelsystem\Container;
|
|
|
|
|
|
|
|
use Engelsystem\Application;
|
|
|
|
|
|
|
|
abstract class ServiceProvider
|
|
|
|
{
|
|
|
|
/** @var Application */
|
|
|
|
protected $app;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ServiceProvider constructor.
|
|
|
|
*
|
|
|
|
* @param Application $app
|
|
|
|
*/
|
|
|
|
public function __construct(Application $app)
|
|
|
|
{
|
|
|
|
$this->app = $app;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register container bindings
|
|
|
|
*/
|
2019-04-24 11:01:37 +02:00
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
}
|
2017-09-22 14:02:02 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called after other services had been registered
|
|
|
|
*/
|
2019-04-24 11:01:37 +02:00
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
}
|
2017-09-22 14:02:02 +02:00
|
|
|
}
|