?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/SQLSrv/



?? Go up: /home/webdevt/prestashop17/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver

?? Viewing: LastInsertId.php

<?php

namespace Doctrine\DBAL\Driver\SQLSrv;

/**
 * Last Id Data Container.
 */
class LastInsertId
{
    /** @var int */
    private $id;

    /**
     * @param int $id
     */
    public function setId($id)
    {
        $this->id = $id;
    }

    /**
     * @return int
     */
    public function getId()
    {
        return $this->id;
    }
}


??

??