File tree Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Files to exclude when creating archive
2
+ /tests export-ignore
3
+ /.github export-ignore
4
+ /.gitmodules export-ignore
5
+ /.gitignore export-ignore
6
+ /.php_cs export-ignore
7
+ /.travis.yml export-ignore
8
+ /.phpstan-src.neon export-ignore
9
+ /.phpstan-src-71.neon export-ignore
10
+ /.phpstan-tests.neon export-ignore
11
+ /phpunit-integration.xml export-ignore
12
+ /phpunit.xml export-ignore
13
+ /ruleset.xml export-ignore
14
+ /travis export-ignore
15
+ /util export-ignore
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ sudo: true
12
12
matrix :
13
13
fast_finish : true
14
14
include :
15
+ - php : 7.1
16
+ env : ES_VERSION="7.0.0"
17
+ - php : 7.2
18
+ env : ES_VERSION="7.0.0"
19
+ - php : 7.3
20
+ env : ES_VERSION="7.0.0"
15
21
- php : 7.1
16
22
env : ES_VERSION="7.1.0"
17
23
- php : 7.2
Original file line number Diff line number Diff line change @@ -1026,7 +1026,6 @@ public function scroll(array $params = [])
1026
1026
{
1027
1027
$ scrollID = $ this ->extractArgument ($ params , 'scroll_id ' );
1028
1028
$ body = $ this ->extractArgument ($ params , 'body ' );
1029
- $ scroll = $ this ->extractArgument ($ params , 'scroll ' );
1030
1029
1031
1030
/**
1032
1031
* @var callable $endpointBuilder
Original file line number Diff line number Diff line change 13
13
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
14
14
* @link http://elastic.co
15
15
*/
16
- class NoNodesAvailableException extends \Exception implements ElasticsearchException
16
+ class NoNodesAvailableException extends ServerErrorResponseException implements ElasticsearchException
17
17
{
18
18
}
You can’t perform that action at this time.
0 commit comments