wp_back/wp-content/plugins/smart-slider-3/Nextend/Framework/Framework.php

23 lines
412 B
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?php
namespace Nextend\Framework;
use Nextend\Framework\Font\FontStorage;
use Nextend\Framework\Localization\Localization;
use Nextend\Framework\Pattern\SingletonTrait;
use Nextend\Framework\Style\StyleStorage;
class Framework {
use SingletonTrait;
protected function init() {
Localization::getInstance();
FontStorage::getInstance();
StyleStorage::getInstance();
}
}