Themosis\Asset\Asset::registerInstance PHP Method

registerInstance() protected method

Register asset instances.
protected registerInstance ( )
    protected function registerInstance()
    {
        if (isset(static::$instances[$this->area][$this->key])) {
            return;
        }
        static::$instances[$this->area][$this->key] = $this;
    }