LastInsertId.php 351 Bytes
Newer Older
1 2 3 4 5
<?php

namespace Doctrine\DBAL\Driver\SQLSrv;

/**
Benjamin Morel's avatar
Benjamin Morel committed
6
 * Last Id Data Container.
7 8 9
 */
class LastInsertId
{
10
    /** @var int */
11 12
    private $id;

Benjamin Morel's avatar
Benjamin Morel committed
13
    /**
14
     * @param int $id
Benjamin Morel's avatar
Benjamin Morel committed
15
     */
16 17 18 19 20
    public function setId($id)
    {
        $this->id = $id;
    }

Benjamin Morel's avatar
Benjamin Morel committed
21
    /**
22
     * @return int
Benjamin Morel's avatar
Benjamin Morel committed
23
     */
24 25 26 27 28
    public function getId()
    {
        return $this->id;
    }
}