shekil_oct/app/Provider.php

30 lines
523 B
PHP
Raw Normal View History

2023-10-24 14:49:37 +00:00
<?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();
}
}