forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFailedPasswordAttemptsFixture.php
More file actions
79 lines (76 loc) · 2.92 KB
/
Copy pathFailedPasswordAttemptsFixture.php
File metadata and controls
79 lines (76 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
declare(strict_types=1);
namespace CakeDC\Users\Test\Fixture;
use Cake\TestSuite\Fixture\TestFixture;
/**
* FailedPasswordAttemptsFixture
*/
class FailedPasswordAttemptsFixture extends TestFixture
{
/**
* Init method
*
* @return void
*/
public function init(): void
{
$this->records = [
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c701',
'user_id' => '00000000-0000-0000-0000-000000000002',
'created' => date('Y-m-d H:i:s', strtotime('-20 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c702',
'user_id' => '00000000-0000-0000-0000-000000000002',
'created' => date('Y-m-d H:i:s', strtotime('-4 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c703',
'user_id' => '00000000-0000-0000-0000-000000000002',
'created' => date('Y-m-d H:i:s', strtotime('-4 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c704',
'user_id' => '00000000-0000-0000-0000-000000000002',
'created' => date('Y-m-d H:i:s', strtotime('-3 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c705',
'user_id' => '00000000-0000-0000-0000-000000000002',
'created' => date('Y-m-d H:i:s', strtotime('-2 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c800',
'user_id' => '00000000-0000-0000-0000-000000000004',
'created' => date('Y-m-d H:i:s', strtotime('-4 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c801',
'user_id' => '00000000-0000-0000-0000-000000000004',
'created' => date('Y-m-d H:i:s', strtotime('-4 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c802',
'user_id' => '00000000-0000-0000-0000-000000000004',
'created' => date('Y-m-d H:i:s', strtotime('-4 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c803',
'user_id' => '00000000-0000-0000-0000-000000000004',
'created' => date('Y-m-d H:i:s', strtotime('-3 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c804',
'user_id' => '00000000-0000-0000-0000-000000000004',
'created' => date('Y-m-d H:i:s', strtotime('-3 minutes')),
],
[
'id' => '79cdd7a7-0f34-49dd-a691-21444f94c805',
'user_id' => '00000000-0000-0000-0000-000000000004',
'created' => date('Y-m-d H:i:s', strtotime('-2 minutes')),
],
];
parent::init();
}
}