add missing return type hints
This commit is contained in:
parent
71748c0d75
commit
d46c2ca7ff
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ class SequenceTest extends FunctionalTestCase
|
||||||
* @throws DoctrineDBALException
|
* @throws DoctrineDBALException
|
||||||
* @throws InvalidSourceException
|
* @throws InvalidSourceException
|
||||||
*/
|
*/
|
||||||
public function sequenceTest()
|
public function sequenceTest(): void
|
||||||
{
|
{
|
||||||
$sequenceGenerator = $this->objectManager->get(SequenceGenerator::class);
|
$sequenceGenerator = $this->objectManager->get(SequenceGenerator::class);
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ class SequenceTest extends FunctionalTestCase
|
||||||
* @throws DoctrineDBALException
|
* @throws DoctrineDBALException
|
||||||
* @throws InvalidSourceException
|
* @throws InvalidSourceException
|
||||||
*/
|
*/
|
||||||
public function setLastNumberForTest()
|
public function setLastNumberForTest(): void
|
||||||
{
|
{
|
||||||
$sequenceGenerator = $this->objectManager->get(SequenceGenerator::class);
|
$sequenceGenerator = $this->objectManager->get(SequenceGenerator::class);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue