Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
/**
 * Avoid possibility to get file accessed directly
 */

namespace Hostinger\Admin;

use Hostinger\Admin\Options\PluginOptions;

if ( ! defined( 'ABSPATH' ) ) {
    die;
}

/**
 * Class for handling Settings
 */
class PluginSettings {

    /**
     * @var PluginOptions|null
     */
    private ?PluginOptions $plugin_options = null;

    /**
     * @param PluginOptions|null $plugin_options
     */
    public function __construct( ?PluginOptions $plugin_options = null ) {
        if ( ! is_null( $plugin_options ) ) {
            $this->plugin_options = $plugin_options;
        }
    }

    /**
     * Return plugin settings
     *
     * @return PluginOptions
     */
    public function get_plugin_settings(): PluginOptions {

        if ( ! empty( $this->plugin_options ) ) {
            $settings = $this->plugin_options;
        } else {
            $settings = get_option(
                HOSTINGER_PLUGIN_SETTINGS_OPTION,
