-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathArticlesFixture.php
More file actions
35 lines (32 loc) · 1.83 KB
/
ArticlesFixture.php
File metadata and controls
35 lines (32 loc) · 1.83 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
<?php
namespace BryanCrowe\ApiPagination\Test\Fixture;
use Cake\TestSuite\Fixture\TestFixture;
class ArticlesFixture extends TestFixture
{
public string $table = 'bryancrowe_articles';
public array $records = [
['title' => 'Post #1', 'body' => 'This is the article body.'],
['title' => 'Post #2', 'body' => 'This is the article body.'],
['title' => 'Post #3', 'body' => 'This is the article body.'],
['title' => 'Post #4', 'body' => 'This is the article body.'],
['title' => 'Post #5', 'body' => 'This is the article body.'],
['title' => 'Post #6', 'body' => 'This is the article body.'],
['title' => 'Post #7', 'body' => 'This is the article body.'],
['title' => 'Post #8', 'body' => 'This is the article body.'],
['title' => 'Post #9', 'body' => 'This is the article body.'],
['title' => 'Post #10', 'body' => 'This is the article body.'],
['title' => 'Post #11', 'body' => 'This is the article body.'],
['title' => 'Post #12', 'body' => 'This is the article body.'],
['title' => 'Post #13', 'body' => 'This is the article body.'],
['title' => 'Post #14', 'body' => 'This is the article body.'],
['title' => 'Post #15', 'body' => 'This is the article body.'],
['title' => 'Post #16', 'body' => 'This is the article body.'],
['title' => 'Post #17', 'body' => 'This is the article body.'],
['title' => 'Post #18', 'body' => 'This is the article body.'],
['title' => 'Post #19', 'body' => 'This is the article body.'],
['title' => 'Post #20', 'body' => 'This is the article body.'],
['title' => 'Post #21', 'body' => 'This is the article body.'],
['title' => 'Post #22', 'body' => 'This is the article body.'],
['title' => 'Post #23', 'body' => 'This is the article body.'],
];
}