Initial commit: Base NOVAChild theme
This commit is contained in:
25
NOVAChild/Bootstrap.php
Normal file
25
NOVAChild/Bootstrap.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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!
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user