File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
source /usr/local/bin/bash_standard_lib.sh
4
4
5
- DOCKER_IMAGES=" php:8.0-cli
5
+ DOCKER_IMAGES=" php:8.2-cli
6
+ php:8.1-cli
7
+ php:8.0-cli
6
8
php:7.4-cli
7
- php:7.3-cli
8
- php:7.2-cli
9
- php:7.1-cli
10
9
"
11
10
12
11
for di in ${DOCKER_IMAGES}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ script_path=$(dirname $(realpath -s $0))
9
9
source $script_path /functions/imports.sh
10
10
set -euo pipefail
11
11
12
- PHP_VERSION=${PHP_VERSION-8.0 -cli}
12
+ PHP_VERSION=${PHP_VERSION-8.2 -cli}
13
13
ELASTICSEARCH_URL=${ELASTICSEARCH_URL-" $elasticsearch_url " }
14
14
elasticsearch_container=${elasticsearch_container-}
15
15
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ declare(strict_types = 1);
17
17
namespace :namespace;
18
18
19
19
use PHPUnit\Framework\TestCase;
20
+ use Elastic\Elasticsearch\ClientInterface;
20
21
use Elastic\Elasticsearch\Exception\ClientResponseException;
21
22
use Elastic\Elasticsearch\Tests\Utility;
22
23
use stdClass;
@@ -31,6 +32,8 @@ use stdClass;
31
32
*/
32
33
class :test-name extends TestCase
33
34
{
35
+ protected ClientInterface $client;
36
+
34
37
protected function setUp(): void
35
38
{
36
39
$this->client = Utility::getClient();
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ use stdClass;
30
30
*/
31
31
class :test-name extends TestCase
32
32
{
33
+ protected ClientInterface $client;
34
+
33
35
protected function setUp(): void
34
36
{
35
37
$this->client = Utility::getClient();
You can’t perform that action at this time.
0 commit comments