• File: Framework.php
  • Full Path: /home/atelipy/www/wpmain/plugins/smart-slider-3/Nextend/Framework/Framework.php
  • File size: 412 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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();
    }
}