26 lines
540 B
PHP
26 lines
540 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Template\NOVAChild;
|
|
|
|
/**
|
|
* Class Bootstrap
|
|
* @package Template\NOVAChild
|
|
*/
|
|
class Bootstrap extends \Template\NOVA\Bootstrap
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
parent::boot();
|
|
// whatever you do, always call parent::boot() or delete this method!
|
|
}
|
|
|
|
protected function registerPlugins(): void
|
|
{
|
|
parent::registerPlugins();
|
|
// whatever you do, always call parent::registerPlugins() or delete this method!
|
|
}
|
|
}
|