mirror of
https://github.com/elyby/accounts.git
synced 2024-12-04 20:49:48 +05:30
28 lines
808 B
PHP
28 lines
808 B
PHP
<?php
|
|
return [
|
|
'admin' => [
|
|
'id' => 1,
|
|
'account_id' => 1,
|
|
'refresh_token' => 'SOutIr6Seeaii3uqMVy3Wan8sKFVFrNz',
|
|
'last_used_ip' => ip2long('127.0.0.1'),
|
|
'created_at' => time(),
|
|
'last_refreshed_at' => time(),
|
|
],
|
|
'admin2' => [
|
|
'id' => 2,
|
|
'account_id' => 1,
|
|
'refresh_token' => 'RI5CdxTama2ZijwYw03rJAq84M2JzPM3gDeIDGI8',
|
|
'last_used_ip' => ip2long('136.243.88.97'),
|
|
'created_at' => time(),
|
|
'last_refreshed_at' => time(),
|
|
],
|
|
'banned-user-session' => [
|
|
'id' => 3,
|
|
'account_id' => 10,
|
|
'refresh_token' => 'Af7fIuV6eL61tRUHn40yhmDRXN1OQxKR',
|
|
'last_used_ip' => ip2long('182.123.234.123'),
|
|
'created_at' => time(),
|
|
'last_refreshed_at' => time(),
|
|
],
|
|
];
|