Initial commit

This commit is contained in:
svoboda
2025-01-12 23:45:42 +07:00
commit b927d1444d
146 changed files with 2026 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace svoboda\negotiatior\models\enumerations;
/**
* Session
*
* Types of session verification
*
* @package svoboda\negotiatior\models\enumerations
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author svoboda <mail@domain.zone>
*/
enum session
{
case hash_only;
case hash_else_address;
}