30 lines
523 B
PHP
30 lines
523 B
PHP
<?php namespace App;
|
|
|
|
use System\Classes\AppBase;
|
|
|
|
/**
|
|
* Provider is an application level plugin, all registration methods are supported.
|
|
*/
|
|
class Provider extends AppBase
|
|
{
|
|
/**
|
|
* register method, called when the app is first registered.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
parent::register();
|
|
}
|
|
|
|
/**
|
|
* boot method, called right before the request route.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
parent::boot();
|
|
}
|
|
}
|