Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-db/src/TableGateway/Feature/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-db/src/TableGateway/Feature/GlobalAdapterFeature.php

<?php

namespace Laminas\Db\TableGateway\Feature;

use Laminas\Db\Adapter\Adapter;
use Laminas\Db\TableGateway\Exception;

class GlobalAdapterFeature extends AbstractFeature
{
    /** @var Adapter[] */
    protected static $staticAdapters = [];

    /**
     * Set static adapter
     */
    public static function setStaticAdapter(Adapter $adapter)
    {
        $class = static::class;

        static::$staticAdapters[$class] = $adapter;
        if ($class === self::class) {
            static::$staticAdapters[self::class] = $adapter;
        }
    }

    /**
     * Get static adapter
     *
     * @throws Exception\RuntimeException
     * @return Adapter
     */
    public static function getStaticAdapter()
    {
        $class = static::class;

        // class specific adapter
        if (isset(static::$staticAdapters[$class])) {
            return static::$staticAdapters[$class];
        }

        // default adapter
        if (isset(static::$staticAdapters[self::class])) {
            return static::$staticAdapters[self::class];
        }

        throw new Exception\RuntimeException('No database adapter was found in the static registry.');
    }

    /**
     * after initialization, retrieve the original adapter as "master"
     */
    public function preInitialize()
    {
        $this->tableGateway->adapter = self::getStaticAdapter();
    }
}