Your IP : 10.10.0.253


Current Path : /var/www/libraries/smartslider3/src/Framework/
Upload File :
Current File : /var/www/libraries/smartslider3/src/Framework/Framework.php

<?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();
    }
}