PATH:
home
/
centosnipponia
/
public_html
/
apptt-oldgit
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
/
SQLSrv
<?php namespace Doctrine\DBAL\Driver\SQLSrv; /** * Last Id Data Container. * * @internal */ class LastInsertId { /** @var int */ private $id; /** * @param int $id * * @return void */ public function setId($id) { $this->id = $id; } /** * @return int */ public function getId() { return $this->id; } }
[+]
..
[-] Connection.php
[edit]
[-] Driver.php
[edit]
[+]
Exception
[-] LastInsertId.php
[edit]
[-] SQLSrvConnection.php
[edit]
[-] SQLSrvException.php
[edit]
[-] SQLSrvStatement.php
[edit]
[-] Statement.php
[edit]
[-] .htaccess.disabled
[edit]