-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.php
46 lines (39 loc) · 979 Bytes
/
3.php
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
<?php declare(strict_types = 1);
final readonly class Author {
/**
* @param non-empty-string $name
*/
public function __construct(
public string $name,
) {}
}
final readonly class Book {
/**
* @param non-empty-string $title
* @param non-empty-array<Author> $authors
*/
public function __construct(
public string $title,
public array $authors,
) {}
}
/**
* @param non-empty-string $word
* @param 'asc'|'desc' $order
* @param positive-int $page
* @return list<Book>
*/
function search(string $word, string $order, int $page): array
{
// 本来は検索エンジンからデータを取得する
return match ($page) {
1 => [new Book('', [])],
default => [],
};
}
$word = filter_var($_GET['word'] ?? '');
$order = filter_var($_GET['order'] ?? 'asc');
$page = filter_var($_GET['page'] ?? 1, FILTER_VALIDATE_INT);
\PHPStan\dumpType(compact('word', 'order', 'page'));
$books = search($word, $order, $page);
\PHPStan\dumpType(compact('books'));