Sindbad~EG File Manager

Current Path : /proc/2302468/cwd/plugins/fluentform/app/Services/wpfluent/libs/viocon/src/Viocon/
Upload File :
Current File : //proc/2302468/cwd/plugins/fluentform/app/Services/wpfluent/libs/viocon/src/Viocon/AliasFacade.php

<?php namespace Viocon;

/**
 * This class gives the ability to access non-static methods statically
 *
 * Class AliasFacade
 *
 * @package Viocon
 */
class AliasFacade {

    /**
     * @var Container
     */
    protected static $vioconInstance;

    /**
     * @param $method
     * @param $args
     *
     * @return mixed
     */
    public static function __callStatic($method, $args)
    {
        if(!static::$vioconInstance) {
            static::$vioconInstance = new Container();
        }

        return call_user_func_array(array(static::$vioconInstance, $method), $args);
    }

    /**
     * @param Container $instance
     */
    public static function setVioconInstance(Container $instance)
    {
        static::$vioconInstance = $instance;
    }

    /**
     * @return \Viocon\Container $instance
     */
    public static function getVioconInstance()
    {
        return static::$vioconInstance;
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists