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 <?php
namespace DigiComp\Sequence\Command; namespace DigiComp\Sequence\Command;
use DigiComp\Sequence\Service\SequenceGenerator; use DigiComp\Sequence\Service\SequenceGenerator;

View file

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

View file

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

View file

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

View file

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