Merge branch 'develop'

This commit is contained in:
Robin Krahnen 2020-03-10 14:53:38 +01:00
commit 2e10a9450f
5 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Sequence\Command;
use DigiComp\Sequence\Service\SequenceGenerator;

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Sequence\Domain\Model;
use Doctrine\ORM\Mapping as ORM;

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Sequence\Service;
/**

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Sequence\Service;
use DigiComp\Sequence\Domain\Model\Insert;

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Sequence\Tests\Functional;
use DigiComp\Sequence\Service\SequenceGenerator;
@ -27,8 +28,7 @@ class SequenceTest extends FunctionalTestCase
$pId = pcntl_fork();
if ($pId) {
$pIds[] = $pId;
}
else {
} else {
for ($j = 0; $j < 10; $j++) {
$sequenceGenerator->getNextNumberFor($sequenceGenerator);
}