Skip to content

Commit 39e563f

Browse files
committed
fix(syntax): don't add a type to $config
1 parent 4e2407e commit 39e563f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Codeception/Module/DrupalBootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class DrupalBootstrap extends Module {
3232
*
3333
* @var array
3434
*/
35-
protected array $config = [
35+
protected $config = [
3636
'site_path' => 'sites/default',
3737
];
3838

src/Codeception/Module/DrupalDrush.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DrupalDrush extends Module {
2828
*
2929
* @var array
3030
*/
31-
protected array $config = [
31+
protected $config = [
3232
'drush' => 'drush',
3333
'alias' => '',
3434
'options' => [],

src/Codeception/Module/DrupalEntity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class DrupalEntity extends Module {
3030
*
3131
* @var array
3232
*/
33-
protected array $config = [
33+
protected $config = [
3434
'cleanup_test' => TRUE,
3535
'cleanup_failed' => TRUE,
3636
'cleanup_suite' => TRUE,

src/Codeception/Module/DrupalUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class DrupalUser extends Module {
5858
*
5959
* @var array
6060
*/
61-
protected array $config = [
61+
protected $config = [
6262
'alias' => '',
6363
'driver' => NULL,
6464
'drush' => 'drush',

src/Codeception/Module/DrupalWatchdog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class DrupalWatchdog extends Module {
3535
*
3636
* @var array
3737
*/
38-
protected array $config = [
38+
protected $config = [
3939
'channels' => [],
4040
'level' => 'ERROR',
4141
'enabled' => TRUE,

0 commit comments

Comments
 (0)