Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
<?php
namespace EntitySchema\Domain\Storage;
use RuntimeException;
/**
 * @license GPL-2.0-or-later
 */
interface IdGenerator {
    /**
     * @return int
     *
     * @throws RuntimeException
     */
    public function getNewId();
}