Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/laminas/laminas-db/src/Adapter/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/vendor/laminas/laminas-db/src/Adapter/AdapterAwareTrait.php

<?php

namespace Laminas\Db\Adapter;

trait AdapterAwareTrait
{
    /** @var Adapter */
    protected $adapter;

    /**
     * Set db adapter
     *
     * @return $this Provides a fluent interface
     */
    public function setDbAdapter(Adapter $adapter)
    {
        $this->adapter = $adapter;

        return $this;
    }
}