File: /home/nassaugo/public_html/wp-content/plugins/git-updater/src/Git_Updater/Additions/Bootstrap.php
<?php
/**
* Git Updater Additions
*
* @author Andy Fragen
* @license MIT
* @link https://github.com/afragen/git-updater-additions
* @package git-updater-additions
*/
namespace Fragen\Git_Updater\Additions;
/*
* Exit if called directly.
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Class Bootstrap
*/
class Bootstrap {
/**
* Run the bootstrap.
*
* @return bool|void
*/
public function run() {
( new Settings() )->load_hooks();
}
}