No description
dae7f83338
Migrate usages of the path [TYPO3][Flow][Security][Authentication] to [Neos][Flow][Security][Authentication] Note: This migration did not produce any changes, so the commit simply marks the migration as applied. This makes sure it will not be applied again. |
||
---|---|---|
Classes/DigiComp/Sequence | ||
Configuration/Testing | ||
Migrations/Mysql | ||
Tests/Functional | ||
.gitignore | ||
composer.json | ||
License.txt | ||
README.md |
DigiComp.Sequence
This is a very simple and stupid tool, helping in generation of gapless sequences. For this task it relies on key integrity of the database of your choice.
Usage is quite simple also:
/**
* @param \DigiComp\Sequence\Service\SequenceNumberGenerator $sequenceNumberGenerator
*/
public function __construct(SequenceNumberGenerator $sequenceNumberGenerator)
{
$this->orderId = $sequenceNumberGenerator->getNextNumberFor($this);
}
getNextNumberFor
allows you to give an object which will be resolved to its FQCN or a custom sequence name.
The CommandController helps you to advance the current sequence number, in case of migrations or similar.
See ./flow help sequence:advance
if interested.