Skip to content
Snippets Groups Projects

Update from upstream

Merged Pavel Břoušek requested to merge privacyidea-master into main
11 files
+ 724
336
Compare changes
  • Side-by-side
  • Inline
Files
11
+ 13
0
<?php
declare(strict_types=1);
namespace PrivacyIDEA\PHPClient;
abstract class AuthenticationStatus
{
public const CHALLENGE = 'CHALLENGE';
public const ACCEPT = 'ACCEPT';
public const REJECT = 'REJECT';
public const NONE = 'NONE';
}
Loading