Skip to content

Commit 0631039

Browse files
committed
MCLOUD-11659: Add php 8.3 to magento-cloud-docker
1 parent d38d910 commit 0631039

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/functional/Codeception/Docker.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ class Docker extends BaseModule
2323
/**
2424
* @var array
2525
*/
26-
protected $config = [
26+
protected array $config = [
2727
'system_magento_dir' => '',
2828
'printOutput' => false,
2929
];
3030

3131
/**
3232
* @var array
3333
*/
34-
protected $services = [];
34+
protected array $services = [];
3535

3636
/**
3737
* @inheritdoc
3838
*/
39-
public function _initialize()
39+
public function _initialize(): void
4040
{
4141
$container = Robo::createDefaultContainer();
4242
$builder = CollectionBuilder::create($container, $this);

tests/functional/Codeception/MagentoDb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function _after(TestInterface $test)
122122
* This method is overridden to avoid connection attempts before running Docker
123123
* {@inheritdoc}
124124
*/
125-
public function _initialize() {}
125+
public function _initialize(): void {}
126126

127127
/**
128128
* This method is overridden to avoid connection attempts before running Docker

0 commit comments

Comments
 (0)