2021-08-26 15:05:37 +02:00
|
|
|
<?php
|
|
|
|
|
2022-05-02 09:56:10 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-08-26 15:05:37 +02:00
|
|
|
namespace DigiComp\FlowSessionLock\Annotations;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
2022-03-15 09:32:42 +01:00
|
|
|
* @Target({"METHOD"})
|
2021-08-26 15:05:37 +02:00
|
|
|
*/
|
2023-01-10 11:55:58 +01:00
|
|
|
#[\Attribute(\Attribute::TARGET_METHOD)]
|
|
|
|
final class Unlock
|
2021-08-26 15:05:37 +02:00
|
|
|
{
|
|
|
|
}
|