1// getting-started.asciidoc:392
2
3[source, php]
4----
5$params = [
6    'index' => 'bank',
7    'body' => [
8        'query' => [
9            'match_all' => [
10            ],
11        ],
12        'sort' => [
13            [
14                'account_number' => 'asc',
15            ],
16        ],
17    ],
18];
19$response = $client->search($params);
20----
21