Lazer\Classes\Helpers\Config::lastId PHP Method

lastId() public method

Returning last ID from table
public lastId ( ) : integer
return integer
    public function lastId()
    {
        return $this->getKey('last_id');
    }

Usage Example

Example #1
0
 /**
  * @covers Lazer\Classes\Helpers\Config::lastId
  */
 public function testLastId()
 {
     $this->assertInternalType('integer', $this->object->lastId());
 }