Skip to content

Commit

Permalink
fix(syntax): don't add a type to $config
Browse files Browse the repository at this point in the history
  • Loading branch information
minorOffense committed Sep 14, 2023
1 parent 4e2407e commit 39e563f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Codeception/Module/DrupalBootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DrupalBootstrap extends Module {
*
* @var array
*/
protected array $config = [
protected $config = [
'site_path' => 'sites/default',
];

Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/DrupalDrush.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DrupalDrush extends Module {
*
* @var array
*/
protected array $config = [
protected $config = [
'drush' => 'drush',
'alias' => '',
'options' => [],
Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/DrupalEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class DrupalEntity extends Module {
*
* @var array
*/
protected array $config = [
protected $config = [
'cleanup_test' => TRUE,
'cleanup_failed' => TRUE,
'cleanup_suite' => TRUE,
Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/DrupalUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class DrupalUser extends Module {
*
* @var array
*/
protected array $config = [
protected $config = [
'alias' => '',
'driver' => NULL,
'drush' => 'drush',
Expand Down
2 changes: 1 addition & 1 deletion src/Codeception/Module/DrupalWatchdog.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class DrupalWatchdog extends Module {
*
* @var array
*/
protected array $config = [
protected $config = [
'channels' => [],
'level' => 'ERROR',
'enabled' => TRUE,
Expand Down

0 comments on commit 39e563f

Please sign in to comment.