DigiComp.FlowSessionLock/Classes/Annotations/Unlock.php
Ferdinand Kuhl 6e1079a81c
Some checks failed
ci/woodpecker/push/functional-tests Pipeline failed
ci/woodpecker/push/code-style Pipeline was successful
Allow PHP 8.1
- for that resolve a keyword conflict with the ReadOnly class
2023-01-10 11:55:58 +01:00

14 lines
192 B
PHP

<?php
declare(strict_types=1);
namespace DigiComp\FlowSessionLock\Annotations;
/**
* @Annotation
* @Target({"METHOD"})
*/
#[\Attribute(\Attribute::TARGET_METHOD)]
final class Unlock
{
}